-
Notifications
You must be signed in to change notification settings - Fork 11
/
uniprotfaldo.ttl
28 lines (25 loc) · 1.21 KB
/
uniprotfaldo.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# baseURI: http://purl.uniprot.org/uniprotfaldo
# imports: http://biohackathon.org/faldo
# imports: http://purl.uniprot.org/core/
@prefix : <http://purl.uniprot.org/uniprotfaldo#> .
@prefix core: <http://purl.uniprot.org/core/> .
@prefix faldo: <http://biohackathon.org/faldo#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://purl.uniprot.org/uniprotfaldo>
rdf:type owl:Ontology ;
owl:imports <http://biohackathon.org/faldo> , core: ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
:ProteinPosition
rdf:type rdfs:Class ;
rdfs:comment "An UniProt feature is always described in relation to a UniProt sequence which is an amino acid. This can never be a stranded position."^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onProperty faldo:reference ;
owl:someValuesFrom core:Sequence
] ;
owl:disjointWith faldo:StrandedPosition ;
owl:equivalentClass core:Range .