Using BLAST Alignment with low sensitivity
1
1
Entering edit mode
6.1 years ago
midox ▴ 290

Hello,

I would like to use BLAST with Low sensitivity(using DNA sequences). Wha't the best paramters should i choose? this is my command:

blastn -query query.fa -subject subject.fasta -out resultatblastn_cerevisae_real  -reward 5 -penalty -4 -gapopen 10 -gapextend 6 -evalue 1

should i change my parameters?

thanks for your help

blast Alignment sequence • 3.7k views
ADD COMMENT
0
Entering edit mode

What is your intent? By "low sensitivity" you mean finding only very similar sequences?

ADD REPLY
0
Entering edit mode

no, it's the opposite. I want to find sequences with low similarity.

ADD REPLY
0
Entering edit mode

You want a high sensitivity, low specificity blast, then.

ADD REPLY
0
Entering edit mode

Hard to figure out exactly what you want but if it is not what @h.mon says then ..

relax the limits, set penalties to low values and collect all "hits" with -evalue set to 10. Then post-parse the results to select "hits" that fit your criteria for "low similarity".

ADD REPLY
3
Entering edit mode
6.1 years ago

If you want to find DNA sequences with low identity, you can descrease word_size from 10 to minimum or so (e.g., -word_size 4 or -word_size 6) and increase e-value from 10 to some big value (e.g., -evalue 1000). You can also turn off masking of low-complexity sequence regions (-dust no -soft_masking false).

blastn -task blastn -query query.fasta -db db.fasta -word_size 4 -evalue 1000 -dust no -soft_masking false

If you are looking for very short DNA sequences you can add the -task blastn-short parameter and play with scoring parameters.

blastn -task blastn-short -query query.fasta -db db.fasta -word_size 4 -evalue 1000 -dust no -soft_masking false -gapopen 3 -penalty -1
ADD COMMENT
0
Entering edit mode

You should add the -task blastn parameter (for finding sequences with low identity) even though your DNA sequence are longer than 50 bases. Because the default parameter is megablast, which is used to find very similar sequences.

ADD REPLY
0
Entering edit mode

Good point, I forgot about this. I updated my answer. Thanks.

ADD REPLY

Login before adding your answer.

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