View gene list in GAGE enriched terms
Hi.
I just ran "GAGE" to identified GO terms enriched in DEGs.
The results showed the terms and statistics, but not the genes included in each term.
Is there a way to obtain the gene list in each term?
Thank you!
• 2,557 views
•
link
1 answer
GAGE has functions for extracting essential genes, but if you just want to see which of your genes overlap with a pathway of interest, you could do something like this below. In the example, the pathway of interest is in "quotes", and you will need to replace YOUR_GENE_SET, Mus.musculus, and kegg.sets.mm with the objects you are working with.
glist<-unlist( kegg.sets.mm["mmu04622 RIG-I-like receptor signaling pathway"])
aa<-glist[glist %in% names(YOUR_GENE_SET)]
mapIds(Mus.musculus, aa , 'SYMBOL' , 'ENTREZID' )
• 0 views
•
link
Log in to answer this question.
Hi,
I had the same question and now it is solved. There are two ways to do it.
Solution 1 (in RStudio):
Then check "kegg.sets.mm" in the "environment". You can use "search" on the right up corner to find the target and click the "value". It will show in the console.
Solution 2: