Hi All,
I want to extract functional sequences from the tab separated file and convert it into the fasta file. I use mac and i know its possible with the awk command but I don't know how to use that so any help/indicator would be appreciated.
The tab file that I have is look like-
No Seq ID Functionality Sequence
1 Seq_1 Yes atcggtcggctggt
The output I want is-
>seq1
atcggtcggctggt
Thanks for any help!
If the proposed solution is not working, post the actual lines from your data file, and format as
code
.You could also do a simple python script. Something like (untested):