enrich.GSE {MAGeCKFlute} | R Documentation |
A universal gene set enrichment analysis tools
enrich.GSE(geneList, keytype = "Entrez", type = "CORUM+KEGG", organism = "hsa", pvalueCutoff = 0.25, limit = c(1, 120), gmtpath = NA)
geneList |
A order ranked numeric vector with geneid as names. |
keytype |
"Entrez" or "Symbol". |
type |
Geneset category for testing, one of 'CORUM', 'CPX' (ComplexPortal), 'GOBP', 'GOMF', 'GOCC', 'KEGG', 'BIOCARTA', 'REACTOME', 'WikiPathways', 'EHMN', 'PID', or any combination of them (e.g. 'GOBP+GOMF+CORUM'), or 'All' (all categories). |
organism |
'hsa' or 'mmu'. |
pvalueCutoff |
Pvalue cutoff. |
limit |
A two-length vector (default: c(1, 120)), specifying the minimal and maximal size of gene sets for enrichent analysis. |
gmtpath |
The path to customized gmt file. |
A enrichResult instance.
Wubing Zhang
data(geneList, package = "DOSE") ## Not run: enrichRes = enrich.GSE(geneList) head(slot(enrichRes, "result")) ## End(Not run)