diff options
author | Munyoki Kilyungi | 2023-12-19 18:53:00 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2023-12-22 11:53:21 +0300 |
commit | cbf77678b01c45faf471f8582acdbb3fe957a49e (patch) | |
tree | d6eb9a6a170a9ca91a55eb58fc47f66519f270ad /examples | |
parent | e5301a15167b0ee1baa79bb7447e003e456a7d5d (diff) | |
download | gn-transform-databases-cbf77678b01c45faf471f8582acdbb3fe957a49e.tar.gz |
Move gnt:hasGeneId definitions to genelist.scm
* examples/generif.scm: Move definitions for gnt:hasGeneId from here to...
* examples/genelist.scm: ... here.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/genelist.scm | 3 | ||||
-rwxr-xr-x | examples/generif.scm | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/genelist.scm b/examples/genelist.scm index b19b30f..185ea61 100755 --- a/examples/genelist.scm +++ b/examples/genelist.scm @@ -22,6 +22,9 @@ (gnt:belongsToSpecies rdfs:domain gnc:GeneSymbol) (gnc:GeneSymbol a rdfs:Class) (gnc:GeneSymbol rdfs:label "Gene Symbol") + (gnt:hasGeneId a owl:ObjectProperty) + (gnt:hasGeneId rdfs:domain gnc:NCBIWikiEntry) + (gnt:hasGeneId skos:definition "The GeneId of this this resource") (gnc:transcript rdfs:domain gnc:GeneSymbol) (gnt:transcript a owl:ObjectProperty) (gnc:transcript rdfs:comments "The gene transcript of this resource") diff --git a/examples/generif.scm b/examples/generif.scm index 691dc34..3c60ab6 100755 --- a/examples/generif.scm +++ b/examples/generif.scm @@ -132,9 +132,6 @@ (schema-triples (gnc:NCBIWikiEntry rdfs:subClassOf gnc:GeneWikiEntry) (gnc:NCBIWikiEntry rdfs:comment "Represents GeneRIF Entries obtained from NCBI") - (gnt:hasGeneId a owl:ObjectProperty) - (gnt:hasGeneId rdfs:domain gnc:NCBIWikiEntry) - (gnt:hasGeneId skos:definition "The GeneId of this this resource") (gnt:hasVersionId a owl:ObjectProperty) (gnt:hasVersionId rdfs:domain gnc:NCBIWikiEntry) (gnt:hasVersionId skos:definition "The VersionId of this this resource")) |