aboutsummaryrefslogtreecommitdiff
path: root/examples/dump-probeset-metadata.scm
diff options
context:
space:
mode:
authorMunyoki Kilyungi2023-05-29 14:26:47 +0300
committerBonfaceKilz2023-05-30 11:51:30 +0300
commit9df0828255632582f515d5d869a3a06f8eda735b (patch)
treed5ea2baacb8fa92193209551bb319f404f9c5b60 /examples/dump-probeset-metadata.scm
parent128b2a9ff19356529a9d09a15b680dcf1b8f8482 (diff)
downloadgn-transform-databases-9df0828255632582f515d5d869a3a06f8eda735b.tar.gz
Only dump public data
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'examples/dump-probeset-metadata.scm')
-rwxr-xr-xexamples/dump-probeset-metadata.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/dump-probeset-metadata.scm b/examples/dump-probeset-metadata.scm
index ae9931c..b3f4165 100755
--- a/examples/dump-probeset-metadata.scm
+++ b/examples/dump-probeset-metadata.scm
@@ -23,7 +23,8 @@
(define-dump dump-probeset-metadata
(tables (ProbeSetXRef
(left-join ProbeSet "ON ProbeSetXRef.ProbeSetId = ProbeSet.Id")
- (left-join ProbeSetFreeze "ON ProbeSetXRef.ProbeSetFreezeId = ProbeSetFreeze.Id")))
+ (left-join ProbeSetFreeze "ON ProbeSetXRef.ProbeSetFreezeId = ProbeSetFreeze.Id"))
+ "WHERE ProbeSetFreeze.public > 0 AND ProbeSetFreeze.confidentiality < 1")
(schema-triples
(gn:probesetData rdfs:range gn:probeset)
(gn:hasProbeset rdfs:range rdfs:Literal))