From 3c06bf6f0006c637af5cea6839539769a4f229d1 Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Thu, 19 Oct 2023 16:51:39 +0300 Subject: Remove un-necessary WHERE clause when dumping phenotypes. * examples/phenotype.scm (phenotypes): Delete "WHERE" clause. Signed-off-by: Munyoki Kilyungi --- examples/phenotype.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/phenotype.scm b/examples/phenotype.scm index 2b1a3a9..6dd82f2 100755 --- a/examples/phenotype.scm +++ b/examples/phenotype.scm @@ -18,8 +18,7 @@ (tables (PublishXRef (left-join InbredSet "ON InbredSet.InbredSetId = PublishXRef.InbredSetId") (left-join Publication "ON Publication.Id = PublishXRef.PublicationId") - (left-join Phenotype "ON Phenotype.Id = PublishXRef.PhenotypeId")) - "WHERE PublishXRef.InbredSetId IN (SELECT PublishFreeze.InbredSetId FROM PublishFreeze)") + (left-join Phenotype "ON Phenotype.Id = PublishXRef.PhenotypeId"))) (schema-triples (gnt:abbreviation a owl:ObjectProperty) (gnt:abbreviation rdfs:domain gnc:Phenotype) -- cgit v1.2.3