DEIB-GECO / GMQL

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

JOIN LEFT - unordered output metadata #82

Closed marcomass closed 6 years ago

marcomass commented 6 years ago

@akaitoua only in the case of LEFT, i.e., JOIN(....; output: LEFT), the output metadata are not alphabetically ordered; can you please check and fix?

I tested with the following query: PROM = SELECT(annotation_type == "promoter") HG19_BED_ANNOTATION; TSS = SELECT(annotation_type == "TSS") HG19_BED_ANNOTATION; PROM_TSS = JOIN(DL(0); output: LEFT) PROM TSS; MATERIALIZE PROM_TSS INTO PROM_TSS;