I run the following query:
INPUT_1 = SELECT(region: chr== chr2) dataset_1;
INPUT_2 = SELECT(region: chr== chr2) dataset_2;
RES = MAP(avg_score AS AVG(score)) INPUT_1 INPUT_2 ;
MATERIALIZE RES INTO MAP_EXAMPLE_1;
The input_1 has 1 sample, the input_2 has 3 but the res of the map is 6 samples (instead of 3!). I enclosed all the usefull material.
I run the following query: INPUT_1 = SELECT(region: chr== chr2) dataset_1; INPUT_2 = SELECT(region: chr== chr2) dataset_2; RES = MAP(avg_score AS AVG(score)) INPUT_1 INPUT_2 ; MATERIALIZE RES INTO MAP_EXAMPLE_1; The input_1 has 1 sample, the input_2 has 3 but the res of the map is 6 samples (instead of 3!). I enclosed all the usefull material.
map.zip