From 9d2fd59a7b4c7a6a269c33b16e956b4b5a975267 Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Thu, 7 Dec 2023 16:14:45 +0300 Subject: Update documentation. Signed-off-by: Munyoki Kilyungi --- rdf-documentation/strains.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'rdf-documentation/strains.md') diff --git a/rdf-documentation/strains.md b/rdf-documentation/strains.md index 4ecb12f..87a8ce9 100644 --- a/rdf-documentation/strains.md +++ b/rdf-documentation/strains.md @@ -13,7 +13,7 @@ The above query results to triples that have the form: ```text gn:Strain_name_ -> rdf:type -> gnc:strain -gn:Strain_name_ -> xkos:classifiedUnder -> gn:Species_fullname +gn:Strain_name_ -> gnt:belongsToSpecies -> gn:Species_fullname gn:Strain_name_ -> rdfs:label -> StrainName gn:Strain_name_ -> skos:altLabel -> Name2 gn:Strain_name_ -> gnt:alias -> Alias @@ -34,7 +34,7 @@ PREFIX taxon: SELECT * WHERE { ?s rdf:type gnc:strain . - ?s xkos:classifiedUnder gn:Mus_musculus . + ?s gnt:belongsToSpecies gn:Mus_musculus . ?s rdfs:label "B6D2F1" . ?s ?p ?o . } @@ -44,7 +44,7 @@ Expected Result: ```rdf gn:B6d2f1 rdf:type gnc:strain . -gn:B6d2f1 xkos:classifiedUnder gn:Mus_musculus . +gn:B6d2f1 gnt:belongsToSpecies gn:Mus_musculus . gn:B6d2f1 rdfs:label "B6D2F1" . ``` @@ -100,14 +100,14 @@ gn:mappingMethodQtlreaper rdfs:label "qtlreaper" . The following SQL query was executed: ```sql -SELECT AvgMethod.Name, AvgMethod.Normalization FROM AvgMethod +SELECT AvgMethod.Name AS AvgMethodName, AvgMethod.Normalization FROM AvgMethod ``` The above query results to triples that have the form: ```text -gn:avgMethodAvgmethod_name -> rdf:type -> gnc:avgMethod -gn:avgMethodAvgmethod_name -> rdfs:label -> AvgMethod(Normalization) +gn:avgMethodAvgmethod_avgmethodname -> rdf:type -> gnc:avgMethod +gn:avgMethodAvgmethod_avgmethodname -> rdfs:label -> AvgMethod(Normalization) ``` Here's an example query: -- cgit v1.2.3