diff options
author | Munyoki Kilyungi | 2023-08-28 13:53:04 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2023-08-28 13:55:22 +0300 |
commit | 79bc1d3701210a13eaa9d939c3f730898d504b26 (patch) | |
tree | 04ab769188141b4fbd9f6dfd113ef4c28c40b0ef | |
parent | e4956fca2d4ad179856f50d14d1912b25df1f7f9 (diff) | |
download | gn-transform-databases-79bc1d3701210a13eaa9d939c3f730898d504b26.tar.gz |
Fix typo
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rwxr-xr-x | examples/classification.scm | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/examples/classification.scm b/examples/classification.scm index 0577f1f..5d6840b 100755 --- a/examples/classification.scm +++ b/examples/classification.scm @@ -34,13 +34,14 @@ (gnc:DatasetType a xkos:ClassificationLevel) (gnc:DatasetType skos:prefLabel "The Type of a Dataset which can be a ProbeSet, Genotype, or Phenotype") (gnc:DatasetType xkos:depth "1") - (gnc:DatasetType skos:member gn:ProbeSet) - (gnc:DatasetType skos:member gn:Genotype) - (gn:Genotype skos:altLabel "DNA Markers and SNPs") - (gn:Genotype skos:prefLabel "Genotype") - (gnc:Type skos:member gn:Phenotype) - (gn:Phenotype skos:prefLabel "Phenotype") - (gn:Phenotype skos:altLabel "Traits and Cofactors") + (gnc:DatasetType skos:member gnc:Probeset) + (gnc:DatasetType skos:member gnc:Genotype) + (gnc:DatasetType skos:member gnc:Phenotype) + (gnc:Probeset skos:altLabel "mRNA Assay Datasets") + (gnc:Genotype skos:altLabel "DNA Markers and SNPs") + (gnc:Genotype skos:prefLabel "Genotype") + (gnc:Phenotype skos:prefLabel "Phenotype") + (gnc:Phenotype skos:altLabel "Traits and Cofactors") (gnc:Species a xkos:ClassificationLevel) (gnc:Species skos:prefLabel "The species in which this resource belongs") (gnc:Species xkos:depth "3") |