How to reduce the size of blastall output
1
0
Entering edit mode
6.5 years ago
Ric ▴ 430

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.

blast • 1.4k views
ADD COMMENT
0
Entering edit mode
6.5 years ago
Asaf 10k
  1. You can output in tabular format (-m 8)
  2. 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

  3. You use high values of -b and -v, you can reduce them if you want less hits.

ADD COMMENT
0
Entering edit mode

What would be the best values for -b and -v? I need to plot a circos plot.

ADD REPLY
0
Entering edit mode

It all depends of the question you ask (rather than the way of presenting the results)

ADD REPLY
0
Entering edit mode

I trying to plot synteny plots between a reference genome which has chromosomes and a new contig based assembly.

ADD REPLY
0
Entering edit mode

Then you should take only the best match I think

ADD REPLY

Login before adding your answer.

Traffic: 1544 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