@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix ns0: <http://biohackathon.org/resource/faldo#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix metadata_def: <http://data.bioontology.org/metadata/def/> . @prefix metadata: <http://data.bioontology.org/metadata/> . ns0:ExactPosition owl:disjointWith ns0:InBetweenPosition . ns0:InBetweenPosition metadata_def:mappingLoom "inbetweenpositions" ; metadata_def:mappingSameURI ns0:InBetweenPosition ; metadata_def:prefLabel "In between positions" ; metadata:prefixIRI "InBetweenPosition" ; a owl:Class ; rdfs:comment "This indicates that a feature is between two other positions that are both known exactly and that are next to each other. An example is a restriction enzyme cutting site. The cut is after one position and before the other position (hence, in between)." ; rdfs:label "In between positions" ; rdfs:subClassOf ns0:Position ; owl:disjointWith ns0:InRangePosition, ns0:OneOfPosition . ns0:after rdfs:domain ns0:InBetweenPosition . ns0:before rdfs:domain ns0:InBetweenPosition .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns0: <http://biohackathon.org/resource/faldo#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix metadata_def: <http://data.bioontology.org/metadata/def/> .
@prefix metadata: <http://data.bioontology.org/metadata/> .

ns0:ExactPosition
    owl:disjointWith ns0:InBetweenPosition .

ns0:InBetweenPosition
    metadata_def:mappingLoom "inbetweenpositions" ;
    metadata_def:mappingSameURI ns0:InBetweenPosition ;
    metadata_def:prefLabel "In between positions" ;
    metadata:prefixIRI "InBetweenPosition" ;
    a owl:Class ;
    rdfs:comment "This indicates that a feature is between two other positions that are both known exactly and that are next to each other. An example is a restriction enzyme cutting site. The cut is after one position and before the other position (hence, in between)." ;
    rdfs:label "In between positions" ;
    rdfs:subClassOf ns0:Position ;
    owl:disjointWith ns0:InRangePosition, ns0:OneOfPosition .

ns0:after
    rdfs:domain ns0:InBetweenPosition .

ns0:before
    rdfs:domain ns0:InBetweenPosition .