This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Geno Ontology Analysis

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:

enter image description here `

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!

go hypergtest

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.

code_formatting

You forgot to mention you are using the GOstats package.

You can use the mapIds() function from the AnnotationDbi package.

0 answers

No answers yet.

Log in to answer this question.