Created
March 1, 2022 20:56
-
-
Save gaurav/a3a51d2e8b0b8c6e75069b140db5284f to your computer and use it in GitHub Desktop.
Code to replicate error on Ubergraph
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
prefix owl: <http://www.w3.org/2002/07/owl#> | |
prefix oboInOwl: <http://www.geneontology.org/formats/oboInOwl#> | |
SELECT ?cls ?pred ?val | |
from <http://reasoner.renci.org/ontology> | |
WHERE | |
{ ?cls ?pred ?val ; | |
a owl:Class . | |
FILTER ( | |
?pred = oboInOwl:hasRelatedSynonym || | |
?pred = oboInOwl:hasNarrowSynonym || | |
?pred = oboInOwl:hasBroadSynonym || | |
?pred = oboInOwl:hasExactSynonym | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment