diff options
| -rwxr-xr-x | examples/ontology.scm | 53 |
1 files changed, 23 insertions, 30 deletions
diff --git a/examples/ontology.scm b/examples/ontology.scm index 56d2779..eb4064c 100755 --- a/examples/ontology.scm +++ b/examples/ontology.scm @@ -199,43 +199,36 @@ (triple 'gnc:phenotype 'a 'owl:Class) (triple 'gnc:phenotype 'a 'skos:Concept) (triple 'gnc:phenotype 'rdfs:label "A phenotype.") - (triple 'gnc:phenotype 'a 'owl:Class) - (triple 'gnc:phenotype 'a 'skos:Concept) - (triple 'gnc:phenotype 'rdfs:label "A phenotype.") - (triple 'gnt:lab_code 'a 'owl:ObjectProperty) - (triple 'gnt:lab_code 'rdfs:domain 'gnc:phenotype) - (triple 'gnt:submitter 'a 'owl:ObjectProperty) - (triple 'gnt:submitter 'rdfs:domain 'gnc:phenotype) - (triple 'gnt:submitter 'skos:definition "A person who submitted this resource to GN") - (triple 'gnt:trait_id 'a 'owl:ObjectProperty) - (triple 'gnt:trait_id 'rdfs:domain 'gnc:phenotype) - (triple 'gnt:trait_id 'skos:definition "This is the unique trait id assigned from GeneNetwork") (triple 'gnt:abbreviation 'a 'owl:ObjectProperty) (triple 'gnt:abbreviation 'rdfs:domain 'gnc:phenotype) (triple 'gnt:abbreviation 'skos:definition "The abbreviation used for this resource") + (triple 'gnt:additive 'rdfs:domain 'gnc:phenotype) + (triple 'gnt:additive 'rdfs:range 'xsd:double) (triple 'gnt:lab_code 'a 'owl:ObjectProperty) (triple 'gnt:lab_code 'rdfs:domain 'gnc:phenotype) - (triple 'gnt:submitter 'a 'owl:ObjectProperty) - (triple 'gnt:submitter 'rdfs:domain 'gnc:phenotype) - (triple 'gnt:submitter 'skos:definition "A person who submitted this resource to GN") - (triple 'gnt:mean 'a 'rdf:Property) - (triple 'gnt:mean 'a 'qb:MeasureProperty) - (triple 'gnt:mean 'rdfs:subPropertyOf 'sdmx-measure:obsValue) - (triple 'gnt:mean 'rdfs:domain 'gnc:phenotype) - (triple 'gnt:mean 'rdfs:range 'xsd:double) - (triple 'gnt:lod_score 'a 'rdf:Property) + (triple 'gnt:locus 'a 'qb:MeasureProperty) + (triple 'gnt:locus 'a 'rdf:Property) + (triple 'gnt:locus 'rdfs:domain 'gnc:phenotype) + (triple 'gnt:locus 'rdfs:range 'rdfs:Literal) + (triple 'gnt:locus 'rdfs:subPropertyOf 'sdmx-measure:obsValue) (triple 'gnt:lod_score 'a 'qb:MeasureProperty) - (triple 'gnt:lod_score 'rdfs:subPropertyOf 'sdmx-measure:obsValue) + (triple 'gnt:lod_score 'a 'rdf:Property) (triple 'gnt:lod_score 'rdfs:domain 'gnc:phenotype) - (triple 'gnt:lod_score 'rdfs:range 'xsd:double) (triple 'gnt:lod_score 'rdfs:label "Peak -logP") + (triple 'gnt:lod_score 'rdfs:range 'xsd:double) + (triple 'gnt:lod_score 'rdfs:subPropertyOf 'sdmx-measure:obsValue) (triple 'gnt:lod_score 'skos:definition "Statistical measurement assessing the likelihood of genetic linkage between traits or genetic markers.") - (triple 'gnt:locus 'a 'rdf:Property) - (triple 'gnt:locus 'a 'qb:MeasureProperty) - (triple 'gnt:locus 'rdfs:subPropertyOf 'sdmx-measure:obsValue) - (triple 'gnt:locus 'rdfs:domain 'gnc:phenotype) - (triple 'gnt:locus 'rdfs:range 'rdfs:Literal) - (triple 'gnt:additive 'rdfs:domain 'gnc:phenotype) - (triple 'gnt:additive 'rdfs:range 'xsd:double) + (triple 'gnt:mean 'a 'qb:MeasureProperty) + (triple 'gnt:mean 'a 'rdf:Property) + (triple 'gnt:mean 'rdfs:domain 'gnc:phenotype) + (triple 'gnt:mean 'rdfs:range 'xsd:double) + (triple 'gnt:mean 'rdfs:subPropertyOf 'sdmx-measure:obsValue) (triple 'gnt:sequence 'rdfs:domain 'gnc:phenotype) - (triple 'gnt:sequence 'rdfs:range 'xsd:integer)))) + (triple 'gnt:sequence 'rdfs:range 'xsd:integer) + (triple 'gnt:submitter 'a 'owl:ObjectProperty) + (triple 'gnt:submitter 'rdfs:domain 'gnc:phenotype) + (triple 'gnt:submitter 'skos:definition "A person who submitted this resource to GN") + (triple 'gnt:submitter 'skos:definition "A person who submitted this resource to GN") + (triple 'gnt:trait_id 'a 'owl:ObjectProperty) + (triple 'gnt:trait_id 'rdfs:domain 'gnc:phenotype) + (triple 'gnt:trait_id 'skos:definition "This is the unique trait id assigned from GeneNetwork")))) |
