Entering edit mode
3.6 years ago
1961012
▴
20
I did Gene ontology analysis of DEGs using R Bioconductor as following:
upBP_0.01= new("GOHyperGParams",
geneIds=selectgenesup,
universeGeneIds=universegenes,
annotation="org.Pf.plasmo.db",
ontology="BP",
pvalueCutoff=0.01,
conditional=FALSE,
testDirection="over")
upBP = hyperGTest(upBP_0.01)
summary(upBP)
and i got the output:
`
How can I get the list of genes in each GO term?
Is there any R script for this issue?
How can I visualize them if possible?
Thank you in advance!
Please do not paste screenshots of plain text content, it is counterproductive. You can copy paste the content directly here (using the code formatting option shown below), or use a GitHub Gist if the content volume exceeds allowed length here.
You forgot to mention you are using the GOstats package.
You can use the
mapIds()
function from the AnnotationDbi package.