diff --git a/ontology.ttl b/ontology.ttl index 83f8cd4..1857f19 100644 --- a/ontology.ttl +++ b/ontology.ttl @@ -1,20 +1,34 @@ @prefix owl: . +@prefix rdfs: . +@prefix taxon: . @prefix : . ### Properties for NCBI gene_info -:typeOfGene a owl:DatatypeProperty . +:typeOfGene + a owl:DatatypeProperty ; + rdfs:label "typeOfGene" . -:nomenclatureStatus a owl:DatatypeProperty . +:nomenclatureStatus + a owl:DatatypeProperty ; + rdfs:label "nomenclatureStatus" . -:fullName a owl:DatatypeProperty . +:fullName + a owl:DatatypeProperty ; + rdfs:label "fullName" . -:featureType a owl:DatatypeProperty . +:featureType + a owl:DatatypeProperty ; + rdfs:label "featureType" . -:taxid a owl:ObjectProperty . +:taxid + a owl:ObjectProperty ; + rdfs:label "taxid" ; + rdfs:range taxon:Taxon . ### Properties for NCIBI gene2go -:hasGO a owl:ObjectProperty . - +:hasGO + a owl:ObjectProperty ; + rdfs:label "hasGO" .