diff options
| author | Munyoki Kilyungi | 2026-01-23 13:57:59 +0300 |
|---|---|---|
| committer | Munyoki Kilyungi | 2026-01-23 13:57:59 +0300 |
| commit | 43c5c0cb4c942841d5f30b4adc1af882e5ce33bb (patch) | |
| tree | ffdc9099033ad34d4393851f0dc5ebfe626598c5 /examples | |
| parent | 91d5c073f71e5639f787583314f887a5b9cc3a14 (diff) | |
| download | gn-transform-databases-43c5c0cb4c942841d5f30b4adc1af882e5ce33bb.tar.gz | |
Replace skos:prefLabel/skos:label with skos:definition ∀ "gnc:"
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'examples')
| -rwxr-xr-x | examples/classification.scm | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/examples/classification.scm b/examples/classification.scm index 012c053..77d672e 100755 --- a/examples/classification.scm +++ b/examples/classification.scm @@ -18,25 +18,23 @@ (tables (Species)) (schema-triples (gnc:resource_classification_scheme a skos:ConceptScheme) - (gnc:resource_classification_scheme skos:prefLabel "GeneNetwork Classification Scheme For Resources which are either defines as a dataset, an inbred group, or a species.") + (gnc:resource_classification_scheme skos:definition "A hierarchical classification scheme for organizing GeneNetwork resources by dataset type, resource set (inbredset group), or species.") (gnc:resource_classification_scheme xkos:numberOfLevels "3") (gnc:resource_classification_scheme xkos:levels gnc:dataset_type) (gnc:resource_classification_scheme xkos:levels gnc:set) (gnc:resource_classification_scheme xkos:levels gnc:species) (gnc:dataset_type a xkos:ClassificationLevel) - (gnc:dataset_type skos:prefLabel "The Type of a Dataset which can be a ProbeSet, Genotype, or Phenotype") + (gnc:dataset_type skos:definition "Classification level describing the biological or experimental nature of a dataset. A dataset can either be a probeSet, a genotype or a phenotype.") (gnc:dataset_type xkos:depth "1") (gnc:dataset_type skos:member gnc:probeset) (gnc:dataset_type skos:member gnc:genotype) (gnc:dataset_type skos:member gnc:phenotype) - (gnc:probeset skos:prefLabel "mRNA Assay Datasets") - (gnc:probeset skos:altLabel "ProbeSet") - (gnc:genotype skos:prefLabel "Genotype") - (gnc:genotype skos:altLabel "DNA Markers and SNPs") - (gnc:phenotype skos:prefLabel "Phenotype") - (gnc:phenotype skos:altLabel "Traits and Cofactors") + (gnc:probeset skos:definition "A category that lists all the probesets contained in GN.") + (gnc:probeset skos:note "Since the probeset are too many to be listed, we don't include them at the moment in RDF.") + (gnc:genotype skos:definition "A category that lists all the genotypes contained in GeneNetwork.") + (gnc:phenotype skos:definition "A category that lists all the phenotypes contained in GeneNetwork.") (gnc:species a xkos:ClassificationLevel) - (gnc:species skos:prefLabel "The species in which this resource belongs") + (gnc:species skos:definition "A category that lists all the species in GeneNetwork.") (gnc:species xkos:depth "3") (gnc:species xkos:specializes gnc:set)) (triples "gnc:species" @@ -47,7 +45,7 @@ (tables (InbredSet)) (schema-triples (gnc:set a xkos:ClassificationLevel) - (gnc:set skos:prefLabel "The Type of Set, Ie InbredSet/OutbredSet that a resource can belong to") + (gnc:set skos:definition "A category that lists all the inbred set groups contained in GeneNetwork.") (gnc:set xkos:depth "2") (gnc:set xkos:generalizes gnc:species)) (triples "gnc:set" |
