Skip to content

Commit

Permalink
Update ontology.ttl
Browse files Browse the repository at this point in the history
  • Loading branch information
hchiba1 committed Nov 22, 2023
1 parent 71d5950 commit f4905cc
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions ontology.ttl
Original file line number Diff line number Diff line change
@@ -1,20 +1,34 @@
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix taxon: <http://ddbj.nig.ac.jp/ontologies/taxonomy/> .
@prefix : <https://dbcls.github.io/ncbigene-rdf/ontology.ttl#> .

### 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" .

0 comments on commit f4905cc

Please sign in to comment.