Fasta sequence of nucleotide sequences
2
0
Entering edit mode
9.3 years ago
ks26atul • 0

I have fasta format nucleotides sequences. I want to filter less than 200 fasta sequence from file.Please tell me any software or tool?

sequence • 2.1k views
ADD COMMENT
0
Entering edit mode

Thanks dear

ADD REPLY
1
Entering edit mode
9.3 years ago
reformat.sh in=reads.fasta out=filtered.fasta minlength=200

http://sourceforge.net/projects/bbmap/

ADD COMMENT
0
Entering edit mode
9.3 years ago
awk '/^>/ {N++;if(N>200) exit 0;} {print;}' in.fa
ADD COMMENT

Login before adding your answer.

Traffic: 2573 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6