Fasta sequence of nucleotide sequences
I have fasta format nucleotides sequences. I want to filter less than 200 fasta sequence from file.Please tell me any software or tool?
• 2,719 views
•
link
2 answers
reformat.sh in=reads.fasta out=filtered.fasta minlength=200
• 0 views
•
link
awk '/^>/ {N++;if(N>200) exit 0;} {print;}' in.fa
• 0 views
•
link
Log in to answer this question.
Thanks dear