Entering edit mode
5.3 years ago
adhirajnath14
▴
40
I need to run a blast for small query sequence in bioperl. The way to do it in blast standalone program is by adding
./blastn -db nt -remote -query test2.seq -task "blastn-short" -out test2.out
Is there a way to add -task arguments in BioPerl?
Thank you
Thank you sir for responding. I tried
It does not work.
in case you copy/pasted this there's a typo after -task
->
must be=>
:Sorry about the typo. I didn't copy paste it, that's why. Anyway, it does not work with it.
from a short glimpse it seems that either you have to call it via
blastn-short
or specify task usingmethod_args
:Bear in mind I'm only guessing
Thank you so much. It worked!
If an answer was helpful, you should upvote it; if the answer resolved your question, you should mark it as accepted. You can accept more than one answer if they all work.