-
Hi GO-Team, I am looking for 2 files, their links are dead. ftp://ftp.geneontology.org/pub/go/quality_control/annotation_checks/taxon_checks/taxon_go_triggers.obo They are used to implement: Can someone point me in the right direction? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hi @davidbio our ontology source files as well as the release process have changed significantly since then. The FTP site is no longer operating. Now you can obtain release files by date from here: http://release.geneontology.org Furthermore for the latest version of any ontology file, it's best to use the OBO library persistent URL. For example, for the main GO release, you can obtain it here: Taxon constraints are maintained using a different set of files now, but they are all included in the version of the ontology called "go-plus". This is an OWL file containing many more axioms than the core release, referencing various external terminologies. The standard release is in RDF/XML, here: But there is also a JSON version which isn't quite as complete: If you aren't using an RDF or OWL library, then that version might be easiest to extract taxon relationships from, which look like this: {
"sub" : "http://purl.obolibrary.org/obo/GO_0048102",
"pred" : "http://purl.obolibrary.org/obo/RO_0002160",
"obj" : "http://purl.obolibrary.org/obo/NCBITaxon_2759"
} You can find information about the taxon union terms in there as well: {
"sub" : "http://purl.obolibrary.org/obo/GO_0019812",
"pred" : "http://purl.obolibrary.org/obo/RO_0002160",
"obj" : "http://purl.obolibrary.org/obo/NCBITaxon_Union_0000004"
} The definitions for the taxon union terms are included in Here's a bit more information on ontology file downloads: https://geneontology.org/docs/download-ontology/ Also, computing the full set of taxon constraints that are in effect for a particular term requires applying an OWL reasoner to go-plus. But I'm currently in the middle of creating a fully precomputed taxon constraints file that will be available in future releases: geneontology/go-ontology#19759 |
Beta Was this translation helpful? Give feedback.
-
@davidbio I'm assuming that the source of this query is coming from the https://geneontology.org/docs/taxon-constraints/ page? The links there look to be a little off; I'm repairing them now. (Tagging @suzialeksander ) |
Beta Was this translation helpful? Give feedback.
-
@balhoff @kltm |
Beta Was this translation helpful? Give feedback.
Hi @davidbio our ontology source files as well as the release process have changed significantly since then. The FTP site is no longer operating. Now you can obtain release files by date from here: http://release.geneontology.org
Furthermore for the latest version of any ontology file, it's best to use the OBO library persistent URL. For example, for the main GO release, you can obtain it here:
Taxon constraints are maintained using a different set of files now, but they are all included in the version of the ontology called "go-plus". This is an OWL file containing many more axioms than the core release, referencing various external terminologies. …