File tree Expand file tree Collapse file tree 3 files changed +14
-14
lines changed
Expand file tree Collapse file tree 3 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ WARN file:./src/sparql/report/has_en_lang_tag.rq
1111WARN file:./src/sparql/report/invalid_definition_evidence.rq
1212WARN file:./src/sparql/report/invalid_mapping.rq
1313WARN file:./src/sparql/report/newline_in_text.rq
14- WARN file:./src/sparql/report/term_replaced_by_not_uri.rq
1514WARN file:./src/sparql/report/unpunctuated_definition.rq
15+ WARN file:./src/sparql/report/value_not_iri.rq
1616WARN file:./src/sparql/report/xref_as_synonym.rq
1717INFO file:./src/sparql/report/duplicate_unscoped_xrefs.rq
1818INFO file:./src/sparql/report/missing_definition_xref.rq
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ # Ensure 'term replaced by' and oboInOwl:consider values are IRIs
2+ PREFIX owl: <http://www.w3.org/2002/07/owl#>
3+ PREFIX obo: <http://purl.obolibrary.org/obo/>
4+ PREFIX oboInOwl: <http://www.geneontology.org/formats/oboInOwl#>
5+
6+ SELECT DISTINCT ?entity ?property ?value
7+ WHERE {
8+ VALUES ?property { obo:IAO_0100001 oboInOwl:consider }
9+ ?entity ?property ?value .
10+
11+ FILTER (!isIRI (?value ))
12+ }
13+ ORDER BY ?entity
You can’t perform that action at this time.
0 commit comments