\name{gt.multtest} \alias{gt.multtest} \title{Correct globaltest results for multiple testing} \description{Corrects the raw p-values resulting from a call to \code{globaltest} for multiple testing, using either Benjamini and Hochberg's False Discovery Rate or Holm's procedure for controlling the Family-Wise Error Rate.} \usage{gt.multtest(gt, proc = c("FDR", "FWER"))} \arguments{ \item{gt}{The output of a call to \code{\link{globaltest}}.} \item{proc}{The procedure to be used. Either "FDR" for Benjamini and Hochberg's (1995) False Discovery Rate-controlling procedure or "FWER" for Holm's (1979) Family-Wise Error Rate controlling procedure.} } \details{This function is completely based on the \code{\link[multtest:mt.rawp2adjp]{mt.rawp2adjp}} function from the \code{multtest} package.} \value{An object of class \code{\link[gt.result-class]{gt.result}}.} \note{This function must be called \emph{prior} to any selection of significant genes.} \references{For references, type: citation("globaltest"). See also the vignette GlobalTest.pdf included with this package.} \author{Jelle Goeman: \email{j.j.goeman@lumc.nl}; Jan Oosting} \seealso{\code{\link{globaltest}}, \code{\link{gtGO}}.} \examples{ # Breast cancer data (ExpressionSet) from the Netherlands Cancer # Institute with annotation: data(vandeVijver) data(annotation.vandeVijver) gt <- globaltest(vandeVijver, "StGallen", annotation.vandeVijver) sort(gt.multtest(gt)) } \keyword{htest}