Entering edit mode
15 months ago
Manuel Sokolov Ravasqueira
▴
110
Hi!
Let's say I would like to analyse if a particular pathway is enriched how would I do that given that I have a set of DGE genes resulting from 1500 genes of RNA Seq?
I do not want to analise any of the default pathways such as C2..C9 or ALL (MF, CC, BP)
go_enrich_1 <- enrichGO(gene = genes,
universe = names(gene_list_1),
OrgDb = org.Hs.eg.db,
keyType="SYMBOL",
ont = "ALL",
pAdjustMethod = "fdr",
pvalueCutoff = 0.05,
readable = TRUE)
Here I analyze ALL the CC, MF and BP and below cancer related pathways.
C3_t2g <- msigdbr(species = "Homo sapiens", category = "C3") %>%
dplyr::select(gs_name, gene_symbol)
em <- enricher(genes, TERM2GENE=C3_t2g)
I would like to just analyze if the glicolysis is altered between groups, how can I do that?
You have not validated answers on past questions you have asked so far. Accepting answers (green checkmark) is one way of appreciating help you receive here. It also provides closure to the threads. Please consider checking your past questions and accepting the answers/upvoting helpful comments.
Thank you for notice @genomax. I added green checkmark in all the solved threads and added feedback to the questions.