Dear all,
I would like to combine x numbers of csv-files into one big table file. The csv-files look like that:
csv-file01
"Reference position";"Coverage"
"1";"1603"
"2";"1611"
"3";"1639"
"4";"1742"
"5";"1742"
"6";"1742"
"7";"1742"
"8";"1742"
"9";"1742"
...
csv-file 02
"Reference position";"Coverage"
"1";"351"
"2";"358"
"3";"358"
"4";"358"
"5";"358"
"6";"359"
"7";"359"
"8";"359"
"9";"359"
...
csv-file ... and so on until csv-file x
Finally, I would like to have a table looking like that:
Reference position | Coverage csv-file 01 | Coverage csv-file 02 | Coverage csv-file ... | Coverage csv-file x |
---|---|---|---|---|
1 | 1603 | 351 | ... | xxx |
2 | 1611 | 358 | ... | xxx |
3 | 1639 | 358 | ... | xxx |
4 | 1742 | 358 | ... | xxx |
5 | 1742 | 358 | ... | xxx |
6 | 1742 | 358 | ... | xxx |
7 | 1742 | 358 | ... | xxx |
8 | 1742 | 358 | ... | xxx |
9 | 1742 | 358 | ... | xxx |
I got it to batch import all csv file using this workflow:
But I don´t get it to generate the above described data transformation.
Is there a node doing this?
Thanks for your help