Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • C Chebi Ontology Generator
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
    • Locked files
  • Issues 3
    • Issues 3
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
  • Merge requests 0
    • Merge requests 0
  • Deployments
    • Deployments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Terraform modules
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • ChEMBLChEMBL
  • ChEBI
  • ChEBI-2.0ChEBI-2.0
  • Chebi Ontology Generator
  • Issues
  • #7
Closed
Open
Issue created Mar 14, 2023 by Carlos Andres Moreno Velez@carlosm🌳Owner

ChEBI Ontology | Add the deprecated compounds (Part I)

As part of the ChEBI Ontology generation process, it is necessary to include the deprecated compounds in the chebi.owl file. A compound is classified as deprecated if:

  1. It is a child of another compound: An example is CHEBI:1 compound, which is deprecated because CHEBI:18357 is its parent. In the chebi.owl these compounds are modelled as follows:
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_1">
   <obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000227"/>
   <obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/CHEBI_18357"/> <!-- its parent! -->
   <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
  1. It was part of a deleted submission, for example: CHEBI:53008. (Table SUBMISSION, status D for the old schema). In the chebi.owl file these compounds are modelled as follows:
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_53008">
   <oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chebi_ontology</oboInOwl:hasOBONamespace>
   <oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CHEBI:53008</oboInOwl:id>
   <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inositol phosphoceramide D</rdfs:label>
   <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>

This task covers the first point because we have not defined the schema for the submission yet.

✏ [Update]: There are compounds with compounds.source_id = 55 (SUBMITTER) which looks like the compounds meet the requirements for the second point.

Edited Mar 20, 2023 by Carlos Andres Moreno Velez
Assignee
Assign to
Time tracking