topGO enrichment analysis, ontology selection.
1
0
Entering edit mode
Aini • 0
@aini-24536
Last seen 3.1 years ago

Hello,, I have a minor question. In topGO enrichment analysis when GOdata is produced the ontology is selected as MF, BP or CC. Is there any way that we can select all three ontologies?

GOdata <- new("topGOdata", ontology = "MF", allGenes = geneList, annot = annFUN.gene2GO, gene2GO = geneID2GO)

topGO enrichmentanalysis geneontology • 1.3k views
ADD COMMENT
0
Entering edit mode
@lluis-revilla-sancho
Last seen 5 days ago
European Union

The different gene ontologies do no share any node or link (outside root that is above all), they are independent, having them together won't help the analysis. You can create three objects with each ontology and use the same test for all three.

ADD COMMENT
1
Entering edit mode

This is not exactly true. There are no cross-ontology mappings in GO.db, because they all get stripped out. There are a couple of reasons for that. We used to get some SQL dumps from geneontology.org that we parsed to generate the GO.db package, but they stopped providing those a few years back, and now we parse some OBO files instead.

Rather than reinvent the whole thing from scratch, we use the OBO files to generate what we previously downloaded and then just run the files we generate through the existing pipeline. One such file is the transitive closure for all terms in the DAG. Generating the transitive closure from the OBO was failing the last time we did this (last November) and it took a bit of sleuthing to figure out that this was happening because there are graphs that include terms from more than one ontology! While those graphs may make sense from a technical perspective they made it impossible to build the GO.db package, and didn't make any sense in the context of what we generally use GO.db for (mostly to do Fisher's exact test). So we (I) split the data into the three ontologies, severing any cross-ontology edges and then generated the transitive closure, which worked.

It's not clear to me if/how this might differ from what we used to download, particularly since the whole GO DAG has been reworked in the intervening period. So maybe these cross-ontology graphs are new? But anyway trying to do a conditional Fisher's exact test using a GO DAG that goes across ontologies doesn't make much sense, and would be very surprising to people if that happened, so there are no cross-ontology edges in GO.db although you can find some at geneontology.org.

ADD REPLY
0
Entering edit mode

Oh, that's new, last time I looked at the obo files they didn't have any link between them. From their website: "The three GO ontologies are is a disjoint, meaning that no is a relations operate between terms from the different ontologies. However, other relationships such as part of and regulates do operate between the GO ontologies.". Glad there is now more info besides is a on the ontology. Thanks for the information James!

ADD REPLY

Login before adding your answer.

Traffic: 730 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6