DEIB-GECO / GMQL

GMQL - GenoMetric Query Language
http://www.bioinformatics.deib.polimi.it/geco/
Apache License 2.0
18 stars 11 forks source link

UNION bug #72

Closed gaiac closed 7 years ago

gaiac commented 7 years ago

@akaitoua I have this problem with the UNION function: from the first SELECT I have 12 samples, from the second 1 sample, but the UNION output is not 13 samples. This is my query:

TEAD4_rep_broad = SELECT(Project == "ENCODE" AND Assembly == "hg19" AND Assay == "ChIP-seq" AND Output_type == "peaks" AND Experiment_target == "TEAD4-human") HG19_ENCODE_BROAD_MAY_2017; TEAD4_rep_narrow = SELECT(Project == "ENCODE" AND Assembly == "hg19" AND Assay == "ChIP-seq" AND Output_type == "peaks" AND Experiment_target == "TEAD4-human") HG19_ENCODE_NARROW_MAY_2017; TEAD4_rep = UNION() TEAD4_rep_narrow TEAD4_rep_broad; MATERIALIZE TEAD4_rep into TEAD4_rep;

gaiac commented 7 years ago

The query didn't work because of the MAY_2017 dataset.