Entering edit mode
6.6 years ago
ayixon
•
0
How to extract from a file all the protein sequences that have more than 800 aa using linux terminal?
How to extract from a file all the protein sequences that have more than 800 aa using linux terminal?
For future reference, to filter a multifasta file for sequences with more than 800 aa,
$ seqkit seq -m 800 test.fa
-m = minimum length of the sequence to be printed
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Solved. Thank you very much. The perl script worked fine.