Entering edit mode
6.2 years ago
tim.ivanov.92
▴
40
I' doing tblastn with biopython via
from Bio.Blast import NCBIWWW
fasta_string = open("my_query.faa").read()
result_handle = NCBIWWW.qblast("tblastn", "refseq_genomes", fasta_string )
and i want to limit my search only to one taxa - arthropods (taxid:6656)
In web blast it is easily done, but i can't seem to find the right option here.
Thank you - that does it!