about summary refs log tree commit diff
diff options
context:
space:
mode:
-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")
+      )))