Description Usage Arguments Value Examples
View source: R/enrichment_functions.R
This function calculates GSEA-based enrichments scores for multiple omics
layer at once. Input pathways or gene sets have to be prepared in advance by
means of the function initOmicsDataStructure
. The function uses pre-
ranked lists for each omics layer to calculate the enrichment score. The
ranking can be calculated by means of the function
rankFeatures.
1 | multiGSEA(pathways, ranks)
|
pathways |
Nested list containing all pathway features for the respective omics layer. |
ranks |
Nested list containing the measured and pre-ranked features for each omics layer. |
Nested list containing the enrichment scores for each given pathway and omics layer.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # Download pathway definition and extract features
pathways <- getMultiOmicsFeatures(dbs = c("kegg"), layer = c("transcriptome", "proteome"))
# load omics data and calculate ranks
data(transcriptome)
data(proteome)
ranks <- initOmicsDataStructure(c("transcriptome", "proteome"))
ranks$transcriptome <- rankFeatures(transcriptome$logFC, transcriptome$pValue)
names(ranks$transcriptome) <- transcriptome$Symbol
ranks$proteome <- rankFeatures(proteome$logFC, proteome$pValue)
names(ranks$proteome) <- proteome$Symbol
## run the enrichment
multiGSEA(pathways, ranks)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.