Skip to content

Commit

Permalink
Add the path predicate to the ontology
Browse files Browse the repository at this point in the history
  • Loading branch information
JervenBolleman committed Dec 18, 2019
1 parent d160f19 commit 1104133
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 2 deletions.
48 changes: 46 additions & 2 deletions ontology/vg.html
Expand Up @@ -144,13 +144,13 @@
</tr>
<tr><td><a href="#Properties">
Properties (
9
10
)
</a></td></tr>
<tr>
<td><a style="objectPropertySearch" href="#ObjectProperties">
Object properties (
8
9
)
</a></td>
<td><select onChange="window.location.hash = document.getElementById('navi3').value" id="navi3"><option value="links">
Expand All @@ -165,6 +165,8 @@
vg:linksReverseToReverse</option>
<option value="node">
vg:node</option>
<option value="path">
vg:path</option>
<option value="position">
vg:position</option>
<option value="reverseOfNode">
Expand Down Expand Up @@ -905,6 +907,48 @@ <h3 id="ObjectProperties">Object properties</h3>
</tbody>
</table>
<table class="subsection">
<a name="http://biohackathon.org/resource/vg#path"></a><tbody>
<tr><th id="path">
vg:path<span class="cp-type">
(rdf:type
<a href="http://www.w3.org/2002/07/owl#ObjectProperty">
owl:ObjectProperty</a>
)
</span>
</th></tr>
<tr>
<td><a href="http://www.w3.org/2000/01/rdf-schema#comment">
rdfs:comment</a></td>
<td>
"This means that this step occurs on the path that is the object of this statment"
<sup><a href=".">
xsd:string</a></sup>
</td>
</tr>
<tr>
<td><a href="http://www.w3.org/2000/01/rdf-schema#domain">
rdfs:domain</a></td>
<td><a href="http://biohackathon.org/resource/vg#Step">
vg:Step</a></td>
</tr>
<tr>
<td><a href="http://www.w3.org/2000/01/rdf-schema#label">
rdfs:label</a></td>
<td>
"path"
<sup><a href=".">
xsd:string</a></sup>
</td>
</tr>
<tr>
<td><a href="http://www.w3.org/2000/01/rdf-schema#range">
rdfs:range</a></td>
<td><a href="http://biohackathon.org/resource/vg#Path">
vg:Path</a></td>
</tr>
</tbody>
</table>
<table class="subsection">
<a name="http://biohackathon.org/resource/vg#position"></a><tbody>
<tr><th id="position">
vg:position<span class="cp-type">
Expand Down
7 changes: 7 additions & 0 deletions ontology/vg.ttl
Expand Up @@ -84,6 +84,13 @@
rdfs:label "node"^^xsd:string ;
rdfs:range :Node ;
.
:path
rdf:type owl:ObjectProperty ;
rdfs:comment "This means that this step occurs on the path that is the object of this statment"^^xsd:string ;
rdfs:domain :Step ;
rdfs:label "path"^^xsd:string ;
rdfs:range :Path ;
.

:position
rdf:type owl:ObjectProperty ;
Expand Down

1 comment on commit 1104133

@adamnovak
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for branch vgontologyfix2. View the full report here.

19 tests passed, 0 tests failed and 0 tests skipped in 12838 seconds

Tests produced 362 warnings. 362 were for lower-than-expected alignment scores

Please sign in to comment.