Entering edit mode
5.5 years ago
imda
▴
10
Dear all,
I have a gft file and I want to remove a cenrtaind word in a certain column:
In this case I want to remove in the second column "mRNA." and just to keep CA01g00010 in this column, could you help me with this?
Pepper1.55ch01 mRNA.CA01g00010 63209 63880
I would like this output
Pepper1.55ch01 CA01g00010 63209 63880
Best
In the case provided it can also be:
sed "s/\tmRNA\./\t/g" example.gtf
.