Description Usage Arguments Value Examples
Runs the specified test function on the expression data to obtain fold change and p-values.
1 2 | runTestOnData(data, normalSampleIndexes, diseaseSampleIndexes, testFunction,
testFunctionExtraArgs)
|
data |
A data frame with columns as sample names, and rows containing
the expression values of each as HGNC Symbol. For example the output of
|
normalSampleIndexes |
The indices of the columns which contain the normal samples |
diseaseSampleIndexes |
The indices of the columns which contain the disease samples |
testFunction |
The test function - see
|
testFunctionExtraArgs |
Extra arguments to the test function |
A data frame with as many rows as HGNC Gene Symbols, with the columns defined by the output of testFunction.
1 2 3 4 5 6 7 8 9 | ## Not run:
gds = getGEO('GDS3837',AnnotGPL = TRUE, getGPL = TRUE,destdir = "/tmp")
gpl = getGEO(Meta(gds)$platform,destdir = "/tmp")
eset = GDS2eSet(gds, GPL=gpl,do.log2=FALSE)
numPairs = dim(pData(eset))[1]/2
expressionDataGEO=importExpressionDataGEO(eset,gpl,defaultProbeSelector,probeCombinerMean)
experimentDataGEO=runTestOnData(expressionDataGEO,1:60,61:120,logPairedTTestFunction)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.