I have a problem with removing columns from a file:.
My input.csv file (with tab)input.tsv:
Otu1 otu2 otu3 otu4 otu5 otu5
1 2 5 9 3
8 9 8 4 2
I would like to remove a column if its header is listed in this file (removeremove.txt, e.txt)g.:
otu2
otu3
So the result would be:
OtuOtu1 1 otu4 otu5 otu5
1 9 3
8 4 2
How can I do this? (Sorry if it is not clear, I am French :) )