Entering edit mode
16 months ago
Manuel Sokolov Ravasqueira
▴
110
I am using gseGO this way:
gse <- gseGO(geneList=gene_list,
ont ="ALL",
minGSSize = 3,
maxGSSize = 800,
pvalueCutoff = 0.05,
verbose = TRUE,
OrgDb = org.Hs.eg.db,
pAdjustMethod = "fdr")
Let's say I want to analyze against a molecular signature on https://www.gsea-msigdb.org/gsea/msigdb/index.jsp. How can I pass this to gseGO? I have tried downloading one of them, reading the read.gmt file and passing as OrgDb.
I think
gseGO
uses a pre-built database for the enrichment analysis.You can use the fgsea package for the geneset enrichment analysis against custom OR mSigDb genesets.