Description Usage Arguments Value Examples
A function that uses MSigDB Hallmark Pathways to compute gene set enrichment analysis for each clustering output given in clusters.
1 | geneSetEval(sce, clusters, gmtPathway)
|
sce |
A SingleCellExperiment object with raw counts in the counts slot. |
clusters |
Factor representing clustering results from a pipeline for the SingleCellExperiment. |
gmtPathway |
File path pointing to a .gmt file for gene set analysis. |
Tibble containing gene set enrichment results for all clusters.
1 2 3 4 5 6 7 8 9 10 | # Example:
## Not run:
data(embryo)
data(embryoClusts)
# Compute pathways for the first clustering output by accessing raw data provided for pathways file
GMTPath <- system.file("extdata", "h.all.v7.4.symbols.gmt", package = "clustREval")
geneSetRes <- geneSetEval(embryo, embryoClusts[[1]], GMTPath)
geneSetRes
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.