-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add taxon disjoints to subset * update query * update subset pipeline * new pipeline for disjoint file in ncbitaxon * update readme to include disjoint file in ncbitaxon * Revert "update readme to include disjoint file in ncbitaxon" This reverts commit 9ef8074. * Revert "new pipeline for disjoint file in ncbitaxon" This reverts commit b6c412a. --------- Co-authored-by: Anita Caron <[email protected]>
- Loading branch information
1 parent
b244442
commit 26bbfae
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
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,22 @@ | ||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | ||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
PREFIX owl: <http://www.w3.org/2002/07/owl#> | ||
PREFIX in_taxon: <http://purl.obolibrary.org/obo/RO_0002162> | ||
CONSTRUCT { | ||
[ | ||
a owl:Restriction ; | ||
owl:onProperty in_taxon: ; | ||
owl:someValuesFrom ?subtaxon ; | ||
owl:disjointWith [ | ||
a owl:Restriction ; | ||
owl:onProperty in_taxon: ; | ||
owl:someValuesFrom [ | ||
a owl:Class ; | ||
owl:complementOf ?subtaxon | ||
] | ||
] | ||
] . | ||
} | ||
WHERE { | ||
?subtaxon rdf:type owl:Class . | ||
} |