File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 11# Identify "unscoped" xrefs (i.e. those without corresponding skos mappings)
22# that are annotated to multiple diseases
33
4+ # CURRENTLY LIMITED TO PRIORITY 1 SOURCES!!! Eventually apply to all xrefs!!!
5+ # Priority 2 sources with duplicate xrefs: MESH|UMLS_CUI
6+ # Lowest priority sources with duplicate xrefs (re-generalize report for these):
7+ # ICD10CM|ICD9CM|ICDO|KEGG|SNOMEDCT_US_2023_03_01
8+
9+
410PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
511PREFIX owl: <http://www.w3.org/2002/07/owl#>
612PREFIX oboInOwl: <http://www.geneontology.org/formats/oboInOwl#>
@@ -34,5 +40,8 @@ WHERE {
3440 ?entity ?property ?value .
3541 FILTER (STRSTARTS (STR (?entity ), "http://purl.obolibrary.org/obo/DOID_"))
3642 FILTER NOT EXISTS { ?entity owl:deprecated ?any }
43+
44+ # PRIORITIZED XREFS
45+ FILTER (REGEX (str(?value ), "^(MIM|NCI|ORDO|GARD):"))
3746}
3847ORDER BY ?value ?entity
You can’t perform that action at this time.
0 commit comments