Online Blast Perl/Python Script
4
0
Entering edit mode
11.3 years ago
figo ▴ 220

Hi All

I have a 10000 sequences in fasta file which I want to do online blast with nr data base . Do any one of you has any perl or python script to do that?

Thanks in advance

Regards

blast • 7.2k views
ADD COMMENT
7
Entering edit mode

Have you searched online for a solution to this? It's a very, very common problem and there are sure to be solutions.

ADD REPLY
0
Entering edit mode

If you are not so keen on using using perl or python, perhaps you could also try Taverna and workflows in myexperiment. You can adopt pre-built workflows in myexperiment for your purpose

ADD REPLY
19
Entering edit mode
11.3 years ago

In BLAST+ to use remote databases, such as nr, you just add the -remote command along with the -db command. For example:

blastp -query my1000seqs.fasta -db nr -remote
ADD COMMENT
2
Entering edit mode
11.3 years ago

Like Neil says, this is a very common task; indeed, if you just want to run the BLAST you describe (i.e. 10000 fasta sequences all in one file), you don't need to use perl or python, you can just give the one file with all the 100000 sequences in it as a query to blast directly

ADD COMMENT
2
Entering edit mode
ADD COMMENT
1
Entering edit mode
11.3 years ago
Haluk ▴ 190

I recommend you to download local blast in your computer and run the following:

  • update_blastdb.pl nr
  • for file in ls your_fasta_files_directory; do ./blastn -query $file -db nr -out $file.xml -task blastn -dust=yes -penalty=-3 -gapopen=5 -gapextend=2 -evalue 1e-10 -html=yes -besthitoverhang 0.1 -besthitscoreedge 0.1 -outfmt 5 -maxtargetseqs 10 -numthreads 4 -parse_deflines=yes; done

You can change parameter values as you want

ADD COMMENT

Login before adding your answer.

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