-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #33 in the validator client. Also bumped Spring version.
- Loading branch information
1 parent
4a830a4
commit 8b91a48
Showing
5 changed files
with
67 additions
and
42 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
23 changes: 23 additions & 0 deletions
23
biopax-validator-client/src/test/resources/testSyntaxErrors.owl
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,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<rdf:RDF | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | ||
xmlns:owl="http://www.w3.org/2002/07/owl#" | ||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
xmlns:bp="http://www.biopax.org/release/biopax-level3.owl#"> | ||
<owl:Ontology rdf:about=""> | ||
<owl:imports rdf:resource="http://www.biopax.org/release/biopax-level3.owl#" /> | ||
</owl:Ontology> | ||
|
||
<bp:BioSource rdf:about="biosource_10090"> | ||
<bp:comment>test: using wrong property name 'taxonXref' (should be 'xref')</bp:comment> | ||
<bp:standardName rdf:datatype = "xsd:string">Mus musculus</bp:standardName> | ||
<bp:taxonXref rdf:resource="Taxonomy_UnificationXref_10090" /> | ||
<bp:displayName rdf:datatype = "xsd:string">Mouse</bp:displayName> | ||
</bp:BioSource> | ||
|
||
<bp:UnificationXref rdf:about="Taxonomy_UnificationXref_10090"> | ||
<bp:db rdf:datatype = "xsd:string">TAXONOMY</bp:db> | ||
<bp:id rdf:datatype = "xsd:string">10090</bp:id> | ||
</bp:UnificationXref> | ||
|
||
</rdf:RDF> |
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