about summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xexamples/ontology.scm9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/ontology.scm b/examples/ontology.scm
index 07e1759..7ea9c4f 100755
--- a/examples/ontology.scm
+++ b/examples/ontology.scm
@@ -36,6 +36,15 @@
       (prefix "pubmed:" "<http://rdf.ncbi.nlm.nih.gov/pubmed/>")
       (prefix "schema:" "<https://schema.org/>")
       (newline)
+      (triple 'gnt:has_trait_page 'a 'owl:ObjectProperty)
+      (triple 'gnt:has_trait_page 'rdfs:label "has traits page")
+      (triple 'gnt:has_trait_page 'rdfs:comment "Links a trait resource to its GeneNetwork web interface page for interactive exploration.")
+      (triple 'gnt:has_trait_page 'skos:definition "Provides a resolvable HTTP link to the GeneNetwork trait interface for a given phenotype trait or dataset entry.")
+      (triple 'gnt:has_trait_page 'rdfs:domain 'gnc:phenotype_trait)
+      (triple 'gnt:has_trait_page 'rdfs:range 'gnc:resource_link)
+      (triple 'gnt:has_trait_page 'schema:domainIncludes 'gnc:phenotype)
+      (triple 'gnt:has_trait_page 'schema:domainIncludes 'dcat:Dataset)
+      (triple 'gnt:has_trait_page 'rdfs:subPropertyOf 'schema:url)
       ;; Minimal BFO bridge for GN terms.
       (triple 'gnc:resource_entity 'a 'owl:Class)
       (triple 'gnc:resource_entity 'rdfs:label "GeneNetwork resource entity")