-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into query_update
- Loading branch information
Showing
25 changed files
with
1,234 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ on: | |
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
strategy: | ||
matrix: | ||
java: [11, 15, 17] | ||
|
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,55 @@ | ||
<?xml version="1.0"?> | ||
<rdf:RDF xmlns="http://www.w3.org/2002/07/owl#" | ||
xml:base="http://www.w3.org/2002/07/owl" | ||
xmlns:owl="http://www.w3.org/2002/07/owl#" | ||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
xmlns:xml="http://www.w3.org/XML/1998/namespace" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | ||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> | ||
<Ontology/> | ||
|
||
|
||
|
||
<!-- | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Classes | ||
// | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
--> | ||
|
||
|
||
|
||
|
||
<!-- http://purl.obolibrary.org/obo/0000001 --> | ||
|
||
<Class rdf:about="http://purl.obolibrary.org/obo/0000001"> | ||
<rdfs:comment>Any animal in the world.</rdfs:comment> | ||
<rdfs:label>animal</rdfs:label> | ||
</Class> | ||
|
||
|
||
|
||
<!-- http://purl.obolibrary.org/obo/0000002 --> | ||
|
||
<Class rdf:about="http://purl.obolibrary.org/obo/0000002"> | ||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/0000001"/> | ||
<rdfs:comment>A member of the genus Canis.</rdfs:comment> | ||
<rdfs:label>canine</rdfs:label> | ||
</Class> | ||
|
||
|
||
|
||
<!-- http://purl.obolibrary.org/obo/0000003 --> | ||
|
||
<Class rdf:about="http://purl.obolibrary.org/obo/0000003"> | ||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/0000001"/> | ||
<rdfs:comment>A member of the genus Felis.</rdfs:comment> | ||
<rdfs:label>feline</rdfs:label> | ||
</Class> | ||
</rdf:RDF> | ||
|
||
|
||
|
||
<!-- Generated by the OWL API (version 4.5.25) https://github.com/owlcs/owlapi --> | ||
|
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,2 @@ | ||
CURIE Label Parent Comment | ||
ID LABEL SC % A rdfs:comment |
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,4 @@ | ||
CURIE Label Parent Comment | ||
obo:0000001 animal Any animal in the world. | ||
obo:0000002 canine animal A member of the genus Canis. | ||
obo:0000003 feline animal A member of the genus Felis. |
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,5 @@ | ||
CURIE Label Parent Comment | ||
ID LABEL SC % A rdfs:comment | ||
obo:0000001 animal Any animal in the world. | ||
0000002 canine animal A member of the genus Canis. | ||
obo:0000003 feline animal A member of the genus Felis. |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
<?xml version="1.0"?> | ||
<rdf:RDF xmlns="https://github.com/ontodev/robot/examples/template.owl#" | ||
xml:base="https://github.com/ontodev/robot/examples/template.owl" | ||
xmlns:obo="http://purl.obolibrary.org/obo/" | ||
xmlns:owl="http://www.w3.org/2002/07/owl#" | ||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
xmlns:xml="http://www.w3.org/XML/1998/namespace" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | ||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" | ||
xmlns:example="http://example.com/"> | ||
<owl:Ontology rdf:about="https://github.com/ontodev/robot/examples/template.owl"/> | ||
|
||
|
||
|
||
<!-- | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Annotation properties | ||
// | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
--> | ||
|
||
|
||
|
||
|
||
<!-- http://purl.obolibrary.org/obo/IAO_0000115 --> | ||
|
||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/> | ||
|
||
|
||
|
||
<!-- http://purl.obolibrary.org/obo/IAO_0000117 --> | ||
|
||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/> | ||
|
||
|
||
|
||
<!-- | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Data properties | ||
// | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
--> | ||
|
||
|
||
|
||
|
||
<!-- http://example.com/propery-1 --> | ||
|
||
<owl:DatatypeProperty rdf:about="http://example.com/propery-1"> | ||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Weight of a mouse or rat in kilograms (kg).</obo:IAO_0000115> | ||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Rebecca C Jackson</obo:IAO_0000117> | ||
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">weight in kilograms</rdfs:label> | ||
</owl:DatatypeProperty> | ||
|
||
|
||
|
||
<!-- | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Classes | ||
// | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
--> | ||
|
||
|
||
|
||
|
||
<!-- http://example.com/B6C3F1 --> | ||
|
||
<owl:Class rdf:about="http://example.com/B6C3F1"> | ||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_10090"/> | ||
<owl:disjointWith rdf:resource="http://example.com/F344N"/> | ||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An inbred strain of mouse used in many scientific investigations.</obo:IAO_0000115> | ||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">James A. Overton</obo:IAO_0000117> | ||
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">B6C3F1</rdfs:label> | ||
<rdfs:seeAlso rdf:resource="http://jaxmice.jax.org/strain/100010.html"/> | ||
</owl:Class> | ||
|
||
|
||
|
||
<!-- http://example.com/F344N --> | ||
|
||
<owl:Class rdf:about="http://example.com/F344N"> | ||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_10116"/> | ||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An inbred strain of rat used in many scientific investigations.</obo:IAO_0000115> | ||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">James A. Overton</obo:IAO_0000117> | ||
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">F 344/N</rdfs:label> | ||
<rdfs:seeAlso rdf:resource="http://www.informatics.jax.org/external/festing/rat/docs/F344.shtml"/> | ||
</owl:Class> | ||
|
||
|
||
|
||
<!-- http://purl.obolibrary.org/obo/NCBITaxon_10090 --> | ||
|
||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_10090"/> | ||
|
||
|
||
|
||
<!-- http://purl.obolibrary.org/obo/NCBITaxon_10116 --> | ||
|
||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_10116"/> | ||
|
||
|
||
|
||
<!-- | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Individuals | ||
// | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
--> | ||
|
||
|
||
|
||
|
||
<!-- http://example.com/rat-1234 --> | ||
|
||
<owl:NamedIndividual rdf:about="http://example.com/rat-1234"> | ||
<rdf:type rdf:resource="http://example.com/F344N"/> | ||
<example:propery-1 rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">0.2</example:propery-1> | ||
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rat 1234</rdfs:label> | ||
</owl:NamedIndividual> | ||
</rdf:RDF> | ||
|
||
|
||
|
||
<!-- Generated by the OWL API (version 4.5.6) https://github.com/owlcs/owlapi --> | ||
|
Oops, something went wrong.