From 15e42bcf7df4901def42da382198573652e7bd0f Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Wed, 22 Nov 2023 12:50:04 +0300 Subject: Add Species join when during RDF ProbeSet transform. We add the species join since when constructing resource links, this table is required. Signed-off-by: Munyoki Kilyungi --- examples/probeset.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/probeset.scm b/examples/probeset.scm index e01fe84..646c3df 100755 --- a/examples/probeset.scm +++ b/examples/probeset.scm @@ -13,7 +13,8 @@ (define-transformer probeset (tables (ProbeSet - (left-join GeneChip "ON GeneChip.Id = ProbeSet.ChipId"))) + (left-join GeneChip "ON GeneChip.Id = ProbeSet.ChipId") + (left-join Species "ON GeneChip.SpeciesId = Species.Id"))) (schema-triples (gnt:hasChip a owl:ObjectProperty) (gnt:hasChip rdfs:domain gnc:Probeset) -- cgit v1.2.3