You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A (given, this is a terrible thing to do) hasExactSynonym annotation with an empty string as value (in RDF), <oboInOwl:hasExactSynonym></oboInOwl:hasExactSynonym> will result in this unfortunate representation:
{
"id" : "http://purl.obolibrary.org/obo/OBA_2050220",
"lbl" : "vascular cell adhesion protein 1 amount",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The amount of a vascular cell adhesion protein 1 when measured in anatomical entity.",
"xrefs" : [ "AUTO:patterns/patterns/entity_attribute_location" ]
},
"synonyms" : [ {
"pred" : "hasExactSynonym"
}]
}
}
The val key in the synonym block should be required (we need to use the linkml!).
So I would expect:
{
"id" : "http://purl.obolibrary.org/obo/OBA_2050220",
"lbl" : "vascular cell adhesion protein 1 amount",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The amount of a vascular cell adhesion protein 1 when measured in anatomical entity.",
"xrefs" : [ "AUTO:patterns/patterns/entity_attribute_location" ]
},
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : ""
}]
}
}
The text was updated successfully, but these errors were encountered:
A (given, this is a terrible thing to do) hasExactSynonym annotation with an empty string as value (in RDF),
<oboInOwl:hasExactSynonym></oboInOwl:hasExactSynonym>
will result in this unfortunate representation:The
val
key in the synonym block should be required (we need to use the linkml!).So I would expect:
The text was updated successfully, but these errors were encountered: