Skip to content

Commit 9f7cd0d

Browse files
authored
Fix qc-proxy-merges query for ROBOT report (#8091)
1 parent 37f8124 commit 9f7cd0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sparql/qc/mondo/qc-proxy-merges.sparql

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ SELECT DISTINCT ?entity ?property ?value WHERE {
2626
FILTER ((str(?source2)="MONDO:equivalentTo") || (str(?source2)="MONDO:obsoleteEquivalent") || (str(?source2)="MONDO:equivalentObsolete") || (str(?source2)="MONDO:obsoleteEquivalentObsolete"))
2727
FILTER (isIRI(?entity) && STRSTARTS(str(?entity), "http://purl.obolibrary.org/obo/MONDO_"))
2828
FILTER (isIRI(?entity2) && STRSTARTS(str(?entity2), "http://purl.obolibrary.org/obo/MONDO_"))
29-
BIND(?xref as ?property)
29+
BIND(IRI(CONCAT("http://mondo.source/", ?xref)) AS ?property)
3030
BIND(str(?entity2) as ?value)
3131
}
3232
ORDER BY ?entity

0 commit comments

Comments
 (0)