Skip to content

Commit

Permalink
Update DOSDP template and SPARQL qc documentation (#8123)
Browse files Browse the repository at this point in the history
Co-authored-by: sabrinatoro <[email protected]>
  • Loading branch information
github-actions[bot] and sabrinatoro authored Sep 16, 2024
1 parent 2aee250 commit c4e9c7b
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 10 deletions.
26 changes: 19 additions & 7 deletions docs/editors-guide/quality-control-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,29 @@ prefix mondo: <http://purl.obolibrary.org/obo/mondo#>
SELECT DISTINCT ?entity ?property ?value WHERE
{
VALUES ?property { <http://purl.obolibrary.org/obo/mondo#rare> }
?entity <http://www.geneontology.org/formats/oboInOwl#inSubset> ?property .
VALUES ?value {
<http://purl.obolibrary.org/obo/mondo#rare>
<http://purl.obolibrary.org/obo/mondo#nord_rare>
<http://purl.obolibrary.org/obo/mondo#orphanet_rare>
<http://purl.obolibrary.org/obo/mondo#gard_rare>
<http://purl.obolibrary.org/obo/mondo#inferred_rare>
<http://purl.obolibrary.org/obo/mondo#mondo_rare>
}
VALUES ?property {
<http://www.geneontology.org/formats/oboInOwl#inSubset>
}
?entity ?property ?value .
?entity rdfs:subClassOf* <http://purl.obolibrary.org/obo/MONDO_0005583>
FILTER NOT EXISTS {
FILTER NOT EXISTS {
?entity owl:deprecated "true"^^xsd:boolean
}
FILTER NOT EXISTS {
?entity mondo:excluded_from_qc_check mondoSparqlQcMondo:qc-animal-disease-rare.sparql .
}
FILTER NOT EXISTS {
?entity mondo:excluded_from_qc_check mondoSparqlQcMondo:qc-animal-disease-rare.sparql .
}
FILTER( !isBlank(?entity) && STRSTARTS(str(?entity), "http://purl.obolibrary.org/obo/MONDO_"))
BIND("Animal disease in Rare subset" as ?value)
}
```
Expand Down
2 changes: 1 addition & 1 deletion src/patterns/pattern-merged.owl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
xmlns:terms="http://purl.org/dc/terms/"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/mondo/mondo-pattern.owl">
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/mondo/releases/2024-08-23/mondo-pattern.owl"/>
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/mondo/releases/2024-08-29/mondo-pattern.owl"/>
</owl:Ontology>


Expand Down
2 changes: 1 addition & 1 deletion src/patterns/pattern-with-imports.owl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
xmlns:terms="http://purl.org/dc/terms/"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/mondo/mondo-pattern.owl">
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/mondo/releases/2024-08-23/mondo-pattern.owl"/>
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/mondo/releases/2024-08-29/mondo-pattern.owl"/>
</owl:Ontology>


Expand Down
2 changes: 1 addition & 1 deletion src/patterns/pattern.owl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
xmlns:terms="http://purl.org/dc/terms/"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/mondo/patterns/pattern.owl">
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/mondo/releases/2024-08-23/mondo-pattern.owl"/>
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/mondo/releases/2024-08-29/mondo-pattern.owl"/>
</owl:Ontology>


Expand Down

0 comments on commit c4e9c7b

Please sign in to comment.