predefinedAnalyses: Predefined enrichment analyses

Description Usage Details Value References See Also Examples

Description

Predefined analysis configurations that can be used in geneSetAnalysis

Usage

1
2
3
4
5
6
7

Details

The above functions return configurations for state-of-the-art analysis pipelines that can be used in geneSetAnalysis. All configurations are preconfigured collections of standard methods for the different pipeline steps. The following lists the methods chosen for the different steps and their parameters. For more detailed descriptions of these methods, please refer to the linked manual pages.

Value

All functions return an object of class gsAnalysis that specifies the corresponding analysis parameters for geneSetAnalysis.

References

Subramanian, A., Tamayo, P., Mootha, V. K., Mukherjee, S., Ebert, B. L., Gillette, M. A., Paulovich, A., Pomeroy, S. L., Golub, T. R., Lander, E. S., Mesirov, J. P. (2005) Gene set enrichment analysis: a knowledge-based approach for interpreting genome-wide expression profiles. Proceedings of the National Academy of Science of the United States of America, 102, 15545–15550.

Hummel, M., Meister, R., Mansmann, U. (2008) GlobalANCOVA: exploration and assessment of gene group effects. Bioinformatics, 24(1), 78–85.

Goeman, J. J., van de Geer, S. A., de Kort, F., van Houwelingen, H. C. (2004) A global test for groups of genes: testing association with a clinical outcome. Bioinformatics, 20(1), 93–99.

See Also

geneSetAnalysis, gsAnalysis

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# load data
require(GlobalAncova)
data(vantVeer)
data(phenodata)
data(pathways)

# apply a gene set analysis based on the average absolute correlation
resAvCor <- geneSetAnalysis(
	# parameters for geneSetAnalysis
	dat = vantVeer,
	geneSets = pathways[1],
	analysis = analysis.averageCorrelation(),
	adjustmentMethod = "fdr",
	# additional parameters for analysis.averageCorrelation
  labs = phenodata$metastases,
	method = "pearson",
	numSamples = 10)

# apply an overrepresentation analysis
resOverrep <- geneSetAnalysis(
	# parameters for geneSetAnalysis
	dat = vantVeer,
	geneSets = pathways,
	analysis = analysis.overrepresentation(),
	adjustmentMethod = "fdr",
	# additional parameters for analysis.overrepresentation
	pValue = TRUE,
	threshold = 0.1,
	labs = phenodata$metastases
)

# apply a global analysis using GlobalAncova
resGA <- geneSetAnalysis(
	# parameters for geneSetAnalysis
	dat = vantVeer,
	geneSets = pathways[1],
	analysis = analysis.globalAncova(),
	adjustmentMethod = "fdr",
	# additional parameters for analysis.globalAncova
	labs = phenodata$metastases,
	method = "approx")

GiANT documentation built on Oct. 23, 2020, 7:56 p.m.