What would be the best values for -b and -v? I need to plot a circos plot.
How to reduce the size of blastall output
Hi, I am running blastall -p blastn -i ${i} -d ${db} -F F -e 1e-10 -E -1 -v 20000 -b 20000 -a 1 -K 1 > output/${output}.blast and I just wondering how could I even further to reduce the output file size by e.g. reducing the number of hits?
Thank you in advance.
• 2,080 views
•
link
1 answer
- You can output in tabular format (-m 8)
You can gzip it on the fly:
blastall -p blastn -i ${i} -d ${db} -F F -e 1e-10 -E -1 -v 20000 -b 20000 -a 1 -K 1 |gzip -c > output/${output}.blast
You use high values of -b and -v, you can reduce them if you want less hits.
• 0 views
•
link
• 0 views
•
link
Log in to answer this question.