@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;
@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;