Description Usage Arguments Value Author(s) See Also Examples
View source: R/topGOfunctions.R
Warping function of "mt.teststat", for computing p-values of a gene expression matrix.
1 2 3 4 | getPvalues(edata, classlabel, test = "t",
alternative = c("greater", "two.sided", "less")[1], genesID = NULL,
correction = c("none", "Bonferroni", "Holm", "Hochberg", "SidakSS",
"SidakSD", "BH", "BY")[8])
|
edata |
Gene expression matrix. |
classlabel |
The phenotype of the data |
test |
Which test statistic to use |
alternative |
The alternative of the test statistic |
genesID |
if a subset of genes is provided |
correction |
Multiple testing correction procedure |
An named numeric vector of p-values.
Adrian Alexa
GOKSTest
, groupStats-class
,
getSigGroups-methods
1 2 3 4 5 6 7 8 9 10 11 | library(ALL)
data(ALL)
## discriminate B-cell from T-cell
classLabel <- as.integer(sapply(ALL$BT, function(x) return(substr(x, 1, 1) == 'T')))
## Differentially expressed genes
geneList <- getPvalues(exprs(ALL), classlabel = classLabel,
alternative = "greater", correction = "BY")
hist(geneList, 50)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.