diff options
Diffstat (limited to 'examples/ontology.scm')
| -rwxr-xr-x | examples/ontology.scm | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/examples/ontology.scm b/examples/ontology.scm index 2e03c53..561bcd3 100755 --- a/examples/ontology.scm +++ b/examples/ontology.scm @@ -38,7 +38,7 @@ (triple 'gnc:population_category 'a 'xkos:ClassificationLevel) (triple 'gnc:population_category 'rdfs:label "Population Category") (triple 'gnc:population_category 'skos:inScheme 'gnc:resource_classification_scheme) - (triple 'gnc:population_category 'skos:prefLabel "Species") + (triple 'gnc:population_category 'skos:prefLabel "Population Category") (triple 'gnc:population_category 'xkos:depth "3") (triple 'gnc:population_category 'xkos:nextLevel 'gnc:set) (triple 'gnc:population_category 'xkos:previousLevel 'gnc:species) @@ -234,4 +234,13 @@ (triple 'gnt:submitter 'skos:definition "A person who submitted this resource to GN") (triple 'gnt:has_phenotype_data 'a 'owl:ObjectProperty) (triple 'gnt:has_phenotype_data 'rdfs:domain 'gnc:set) - (triple 'gnt:has_phenotype_data 'skos:definition "This resource has phenotype data.")))) + (triple 'gnt:has_phenotype_data 'skos:definition "This resource has phenotype data.") + + ;; Genotypes + (triple 'gnt:has_genotype_data 'rdf:type 'owl:ObjectProperty) + (triple 'gnt:has_genotype_data 'rdfs:label "this resources has genotype data.") + (triple 'gnt:has_genotype_data 'rdfs:comment "Associates a resource with its genotype data.") + (triple 'gnt:has_genotype_data 'rdfs:domain 'gnc:set) + (triple 'gnt:has_genotype_data 'rdfs:range 'dcat:Dataset) + (triple 'gnt:has_genotype_data 'rdfs:subPropertyOf 'dct:relation) + ))) |
