\name{romer} \alias{romer} \alias{romer2} \title{Rotation Gene Set Enrichment Analysis} \description{ Rotation-mean-rank version of GSEA (gene set enrichment analysis) for linear models. } \usage{ romer(iset,y,design,contrast=ncol(design),array.weights=NULL,block=NULL,correlation,set.statistic="mean",nrot=9999) } \arguments{ \item{iset}{list of indices specifying the rows of \code{y} in the gene sets. The list can be made using \link{symbols2indices}.} \item{y}{numeric matrix giving log-expression values.} \item{design}{design matrix} \item{contrast}{contrast for which the test is required. Can be an integer specifying a column of \code{design}, or else a contrast vector of length equal to the number of columns of \code{design}.} \item{array.weights}{optional numeric vector of array weights.} \item{block}{optional vector of blocks.} \item{correlation}{correlation between blocks.} \item{set.statistic}{statistic used to summarize the gene ranks for each set. Possible values are \code{"mean"}, \code{"floormean"} or \code{"mean50"}.} \item{nrot}{number of rotations used to estimate the p-values.} } \value{ Numeric matrix giving p-values and the number of matched genes in each gene set. Rows correspond to gene sets. There are four columns giving the number of genes in the set and p-values for the alternative hypotheses mixed, up or down. } \details{ This function implements a GSEA of a battery of gene sets similar in motivation to Subramanian et al (2005) but designed for use with linear models. It is a competitive test, in that the different gene sets are pitted against one another. Instead of permutation, it uses rotation, a parametric resampling method suitable for linear models (Langsrud, 2005). \code{romer} can be used with any linear model with some level of replication. Curated gene sets suitable for use with \code{romer} can be downloaded from \url{http://bioinf.wehi.edu.au/software/MSigDB/}. These lists are based on the molecular signatures database from the Broad Institute, but with gene symbols converted to offical gene symbols, separately for mouse and human. In the output, p-values are given for each set for three possible alternative hypotheses. The alternative "up" means the genes in the set tend to be up-regulated, with positive t-statistics. The alternative "down" means the genes in the set tend to be down-regulated, with negative t-statistics. The alternative "mixed" test whether the genes in the set tend to be differentially expressed, without regard for direction. In this case, the test will be significant if the set contains mostly large test statistics, even if some are positive and some are negative. The first two alternatives are appropriate if you have a prior expection that all the genes in the set will react in the same direction. The "mixed" alternative is appropriate if you know only that the genes are involved in the relevant pathways, without knowing the direction of effect for each gene. Note that \code{romer} estimates p-values by simulation, specifically by random rotations of the orthogonalized residuals. This means that the p-values will vary slightly from run to run. To get more precise p-values, increase the number of rotations \code{nrot}. The strategy of random rotations is due to Langsrud (2005). The argument \code{set.statistic} controls the way that t-statistics are summarized to form a summary test statistic for each set. In all cases, genes are ranked by moderated t-statistic. If \code{set.statistic="mean"}, the mean-rank of the genes in each set is the summary statistic. If \code{set.statistic="floormean"} then negative t-statistics are put to zero before ranking for the up test, and vice versa for the down test. This improves the power for detecting genes with a subset of responding genes. If \code{set.statistics="mean50"}, the mean of the top 50\% ranks in each set is the summary statistic. This statistic performs well in practice but is slightly slower to compute. } \seealso{ \code{\link{topRomer}}, \code{\link{symbols2indices}}, \code{\link{roast}}, \code{\link{wilcoxGST}} An overview of tests in limma is given in \link{08.Tests}. } \author{Yifang Hu and Gordon Smyth} \references{ Langsrud, O, 2005. Rotation tests. \emph{Statistics and Computing} 15, 53-60 Subramanian, A, Tamayo, P, Mootha, VK, Mukherjee, S, Ebert, BL, Gillette, MA, Paulovich, A, Pomeroy, SL, Golub, TR, Lander, ES and Mesirov JP, 2005. Gene set enrichment analysis: a knowledge-based approach for interpreting genome-wide expression profiles. \emph{Proc Natl Acad Sci U S A} 102, 15545-15550 } \examples{ y <- matrix(rnorm(100*4),100,4) design <- cbind(Intercept=1,Group=c(0,0,1,1)) iset <- 1:5 y[iset,3:4] <- y[iset,3:4]+3 iset1 <- 1:5 iset2 <- 6:10 r <- romer(iset=list(iset1=iset1,iset2=iset2),y=y,design=design,contrast=2,nrot=99) r topRomer(r,alt="up") topRomer(r,alt="down") } \keyword{htest}