-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added is_format_of property to format property missing test
- Loading branch information
1 parent
ec6cdd5
commit 9be1a8d
Showing
4 changed files
with
53 additions
and
7 deletions.
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
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,21 @@ | ||
PREFIX obo: <http://purl.obolibrary.org/obo/> | ||
PREFIX owl: <http://www.w3.org/2002/07/owl#> | ||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | ||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
PREFIX oboInOwl: <http://www.geneontology.org/formats/oboInOwl#> | ||
PREFIX edam:<http://edamontology.org/> | ||
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | ||
|
||
CONSTRUCT { | ||
?children_format rdfs:subClassOf ?restriction . | ||
?restriction rdf:type owl:Restriction ; | ||
owl:onProperty edam:is_format_of ; | ||
owl:someValuesFrom ?data. | ||
} | ||
WHERE { | ||
?parent_format rdfs:subClassOf ?restriction . | ||
?restriction rdf:type owl:Restriction ; | ||
owl:onProperty edam:is_format_of ; | ||
owl:someValuesFrom ?data. | ||
?children_format rdfs:subClassOf+ ?parent_format . | ||
} |