DEIB-GECO / GMQL

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

Project problem with attributes with the same name #2

Closed pp86 closed 7 years ago

pp86 commented 7 years ago

In PROJECT, if I define two new attributes with the same name, no error is raised by the compiler (as it should) A = SELECT(cell == 'K562' AND antibody == 'c-Jun' AND ID == '1217') HG19_ENCODE_BED; B=PROJECT(region_update: score1 AS (score/score), score1 AS (score/score)+(score+5)) A;

MATERIALIZE A INTO DatasetTab2;

MATERIALIZE B INTO ProjectedDatasetTab2;