about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMunyoki Kilyungi2026-02-09 08:30:44 +0300
committerMunyoki Kilyungi2026-02-09 08:30:44 +0300
commit47c2085e1d1b7a468bc23c1427d52c02ec12c592 (patch)
tree790618f12a75fd2e301d387604624ad5b07f10ea
parent319259ac59de3aad504ad96063f78a7c37fa3af8 (diff)
downloadgn-transform-databases-47c2085e1d1b7a468bc23c1427d52c02ec12c592.tar.gz
Add RIF terms to ontology.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rwxr-xr-xexamples/ontology.scm17
1 files changed, 16 insertions, 1 deletions
diff --git a/examples/ontology.scm b/examples/ontology.scm
index 5ed45a1..7a933c6 100755
--- a/examples/ontology.scm
+++ b/examples/ontology.scm
@@ -307,4 +307,19 @@
       (triple 'gnt:has_omim_id 'a 'owl:ObjectProperty)
       (triple 'gnt:has_omim_id 'rdfs:domain 'gnc:probeset)
       (triple 'gnt:has_chebi_id 'a 'owl:ObjectProperty)
-      (triple 'gnt:has_chebi_id 'rdfs:domain 'gnc:probeset))))
+      (triple 'gnt:has_chebi_id 'rdfs:domain 'gnc:probeset)
+
+      ;; RIF
+      (triple 'gnc:gene_wiki_entry 'a 'rdfs:Class)
+      (triple 'gnc:gn_wiki_entry 'rdfs:subClassOf 'gnc:gene_wiki_entry)
+      (triple 'gnt:initial 'a 'owl:ObjectProperty)
+      (triple 'gnt:initial 'rdfs:domain 'gnc:gene_wiki_entry)
+      (triple 'gnt:initial 'skos:definition "Optional user or project code or your initials")
+      (triple 'gnt:reason 'a 'owl:ObjectProperty)
+      (triple 'gnt:reason 'rdfs:domain 'gnc:gene_wiki_entry)
+      (triple 'gnt:reason 'skos:definition "The reason why this resource was modified")
+      (triple 'gnc:gn_wiki_entry 'rdfs:comment "Represents GeneRIF Entries entered from GeneNetwork")
+      (triple 'gnt:gene_symbol 'rdfs:domain 'gnc:gn_wiki_entry)
+      (triple 'gnc:ncbi_wiki_entry 'rdfs:subClassOf gnc:gene_wiki_entry)
+      (triple 'gnc:ncbi_wiki_entry 'rdfs:comment "Represents GeneRIF Entries obtained from NCBI")
+      )))