-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ttlser add no_reorder_rdf_star to fix owl:annotatedTarget reordering
there are some property chin axioms in ro.owl that have been annotated and before this fix the annotated target was reordered causing owlapi to include the reordered property chain axioms from the targets which not surprisingly produced a bunch of unsatisfiable classes no_reorder_rdf_start is a dict where the keys are the direct linking predicate to the list that should not be reordered and the values are the secondary linking predicate that connects to the predicate that will be tested as a member of no_reorder_list, in which case the list will not be reordered since its target will not be reordered (if this paragraph was confusing look at test/no-reorder.ttl for an example). vbump for release and bump the nifttl version
- Loading branch information
Showing
5 changed files
with
48 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
@prefix : <file:///ERROR/EMPTY/PREFIX/BANNED/> . | ||
@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
@prefix partOf: <http://purl.obolibrary.org/obo/BFO_0000050> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix RO: <http://purl.obolibrary.org/obo/RO_> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
|
||
### Object Properties | ||
|
||
RO:0002216 a owl:ObjectProperty ; | ||
owl:propertyChainAxiom ( | ||
RO:0002215 | ||
partOf: ) . | ||
|
||
### Axioms | ||
|
||
[] a owl:Axiom ; | ||
owl:annotatedSource RO:0002216 ; | ||
owl:annotatedProperty owl:propertyChainAxiom ; | ||
owl:annotatedTarget ( | ||
RO:0002215 | ||
partOf: ) ; | ||
RO:0002582 true . | ||
|
||
### Serialized using the ttlser deterministic serializer v1.2.0 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .serializers import * | ||
from .serializers import __all__ | ||
|
||
__version__ = '1.1.4' | ||
__version__ = '1.1.5' |
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