I have a problem with removing columns from a file.
input.tsv:
Otu1 otu2 otu3 otu4 otu5 1 2 5 9 3 8 9 8 4 2 I would like to remove a column if its header is listed in file remove.txt, e.g.:
otu2 otu3 So the result would be:
Otu1 otu4 otu5 1 9 3 8 4 2 How can I do this?