RTXteam / RTX-KG2

Build system for the RTX-KG2 biomedical knowledge graph, part of the ARAX reasoning system (https://github.com/RTXTeam/RTX)
MIT License
39 stars 8 forks source link

Why didn't we get UMLS:C0572088 with CHV? #344

Open saramsey opened 1 year ago

saramsey commented 1 year ago

So with the addition of CHV into KG2.8.4pre (#280), the hope and intention was that we would get UMLS:C0572088 ("Fentanyl overdose") into the graph. But for some reason, that didn't happen. Grepping the umls-chv.ttl file is probably the approach here, to find it. Could someone please have a look? Thanks.

ecwood commented 1 year ago

This is in the umls-chv.ttl file:

<http://purl.bioontology.org/ontology/CHV/0000040137> a owl:Class ;
        skos:prefLabel """fentanyl overdose"""@en ;
        skos:notation """0000040137"""^^xsd:string ;
        <http://purl.bioontology.org/ontology/CHV/COMBO_SCORE> """-1"""^^xsd:string ;
        <http://purl.bioontology.org/ontology/CHV/COMBO_SCORE_NO_TOP_WORDS> """-1"""^^xsd:string ;
        <http://purl.bioontology.org/ontology/CHV/CONTEXT_SCORE> """-1"""^^xsd:string ;
        <http://purl.bioontology.org/ontology/CHV/CUI_SCORE> """-1"""^^xsd:string ;
        <http://purl.bioontology.org/ontology/CHV/DISPARAGED> """no"""^^xsd:string ;
        <http://purl.bioontology.org/ontology/CHV/FREQUENCY> """-1"""^^xsd:string ;
        UMLS:has_cui """C0572088"""^^xsd:string ;
        UMLS:has_tui """T037"""^^xsd:string ;
        UMLS:has_sty <http://purl.bioontology.org/ontology/STY/T037> ;

and this is in the umls-chv.json file:

    }, {
      "id" : "http://purl.bioontology.org/ontology/CHV/0000040137",
      "meta" : {
        "basicPropertyValues" : [ {
          "pred" : "https://identifiers.org/umls:has_cui",
          "val" : "C0572088"
        }, {
          "pred" : "http://www.w3.org/2004/02/skos/core#notation",
          "val" : "0000040137"
        }, {
          "pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
          "val" : "fentanyl overdose"
        }, {
          "pred" : "https://identifiers.org/umls:has_tui",
          "val" : "T037"
        } ]
      },
      "type" : "CLASS"
    }, {

However, it, for some reason, did not get incorporated into KG2.8.4pre or KG2.8.5pre. This is likely an issue with multi ont.

saramsey commented 1 year ago

Good catch, @ecwood