diff options
| author | Munyoki Kilyungi | 2026-02-09 09:54:17 +0300 |
|---|---|---|
| committer | Munyoki Kilyungi | 2026-02-09 09:54:17 +0300 |
| commit | 4bd663ecac07876b6c748085b5fdcd14cc9e0246 (patch) | |
| tree | 8581ee0ff849b670a9f02dc2698e64504b682116 | |
| parent | 4eff64e40ba0c25886db6966af7695a2710181ea (diff) | |
| download | gn-transform-databases-4bd663ecac07876b6c748085b5fdcd14cc9e0246.tar.gz | |
Fix ontology.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
| -rwxr-xr-x | examples/ontology.scm | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/examples/ontology.scm b/examples/ontology.scm index 7a933c6..f2b54cc 100755 --- a/examples/ontology.scm +++ b/examples/ontology.scm @@ -280,17 +280,17 @@ (triple 'gnt:has_target_id 'rdfs:domain 'gnc:probeset) (triple 'gnt:symbol 'a 'owl:ObjectProperty) (triple 'gnt:symbol 'rdfs:domain 'gnc:probeset) - (triple 'gnt:targets_region 'a owl:ObjectProperty) + (triple 'gnt:targets_region 'a 'owl:ObjectProperty) (triple 'gnt:targets_region 'rdfs:label "The target region") (triple 'gnt:targets_region 'rdfs:domain 'gnc:probeset) - (triple 'gnt:mb_mm8 rdfs:domain 'gnc:probeset) + (triple 'gnt:mb_mm8 'rdfs:domain 'gnc:probeset) (triple 'gnt:has_specificity 'a 'owl:ObjectProperty) (triple 'gnt:has_specificity 'rdfs:domain 'gnc:probeset) (triple 'gnt:has_blat_score 'a 'owl:ObjectProperty) (triple 'gnt:has_blat_score 'rdfs:domain 'gnc:probeset) - (triple 'gnt:has_blat_mb_start 'a owl:ObjectProperty) + (triple 'gnt:has_blat_mb_start 'a 'owl:ObjectProperty) (triple 'gnt:has_blat_mb_start 'rdfs:domain 'gnc:probeset) - (triple 'gnt:has_blat_mb_end 'a owl:ObjectProperty) + (triple 'gnt:has_blat_mb_end 'a 'owl:ObjectProperty) (triple 'gnt:has_blat_mb_end 'rdfs:domain 'gnc:probeset) (triple 'gnt:has_blat_seq 'a 'owl:ObjectProperty) (triple 'gnt:has_blat_seq 'rdfs:domain 'gnc:probeset) @@ -298,7 +298,7 @@ (triple 'gnt:has_target_seq 'rdfs:domain 'gnc:probeset) (triple 'gnt:has_homologene_id 'a 'owl:ObjectProperty) (triple 'gnt:has_homologene_id 'rdfs:domain 'gnc:probeset) - (triple 'gnt:has_uniprot_id 'a owl:ObjectProperty) + (triple 'gnt:has_uniprot_id 'a 'owl:ObjectProperty) (triple 'gnt:has_uniprot_id 'rdfs:domain 'gnc:probeset) (triple 'gnt:has_pub_chem_id 'a 'owl:ObjectProperty) (triple 'gnt:has_pub_chem_id 'rdfs:domain 'gnc:probeset) @@ -320,6 +320,5 @@ (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") - ))) + (triple 'gnc:ncbi_wiki_entry 'rdfs:subClassOf 'gnc:gene_wiki_entry) + (triple 'gnc:ncbi_wiki_entry 'rdfs:comment "Represents GeneRIF Entries obtained from NCBI")))) |
