-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create RD subset pipeline * Remove redundant subsets/mondo-rare.kgx.tsv This has already been fixed on master branch * change dir ref from tmp to $(TMPDIR) for Rare Subset and EMC goals * change tmp dir ref to $(TMPDIR) * Fixing NORD URL * re-run update-rare-disease-subset goal after updating qc checks in mondo-ingest * Refactor pipeline to allow simulating EMC runs * Fix the GARD goal This is now simply using the usual setup, with a minor addition which rewrites obsolete GARD mappings to the correct format. * Return mondo-edit.obo back to master state * Update all EMC incl. rare * Add all rare subsets to Animal rare QC check * Update Animal disease queries to have the subset as the value instead of property * Update mondo-edit.obo * Update mondo-edit.obo --------- Co-authored-by: Trish Whetzel <[email protected]>
- Loading branch information
Showing
7 changed files
with
341 additions
and
1,347 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
PREFIX owl: <http://www.w3.org/2002/07/owl#> | ||
PREFIX oboInOwl: <http://www.geneontology.org/formats/oboInOwl#> | ||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
|
||
SELECT ?mondo_id ?property ?synonym WHERE { | ||
?axiom rdf:type owl:Axiom . | ||
?axiom owl:annotatedSource ?mondo_id . | ||
?axiom owl:annotatedProperty ?property . | ||
?axiom owl:annotatedTarget ?synonym . | ||
?axiom oboInOwl:hasSynonymType <http://purl.obolibrary.org/obo/mondo#EXCLUDE> . | ||
|
||
FILTER(STRSTARTS(STR(?mondo_id), "http://purl.obolibrary.org/obo/MONDO_")) | ||
} |
Oops, something went wrong.