vote up 0 vote down star

Hi,

I have a BLAST output file in XML format. It is 22 query sequences with 50 hits reported from each sequence. And I want to extract all the 50x22 hits. This is the code I currently have, but it only extracts the 50 hits from the first query.

from Bio.Blast import NCBIXM
blast_records = NCBIXML.parse(result_handle)
blast_record = blast_records.next()

save_file = open("/Users/jonbra/Desktop/my_fasta_seq.fasta", 'w')

for alignment in blast_record.alignments:
    for hsp in alignment.hsps:
            save_file.write('>%s\n' % (alignment.title,))
save_file.close()

Somebody have any suggestions as to extract all the hits? I guess I have to use something else than alignments. Hope this was clear. Thanks!

Jon

flag

75% accept rate
Why the double posting ? stackoverflow.com/questions/1684194/… an hour ago or so ? – mjv Nov 5 at 23:57
Since most people here probably don't use BioPython you might get more answers if you provide some useful links – gnibbler Nov 5 at 23:59
mjv: The previous posting was about how to save the output. This is about almost the same code, but now I want to change it. gnibbler: what do you mean useful links? Like links to help with the answer? I have been checking a lot of links. Like biopython docs, but the problem is that I have a hard time reading such docs – Jon Nov 6 at 0:34

1 Answer

vote up 1 vote down check

This should get all records. The novelty compared with the original is the

for blast_record in blast_records

which is a python idiom to iterate through items in a "list-like" object, such as the blast_records (checking the CBIXML module documentation showed that parse() indeed returns an iterator)

from Bio.Blast import NCBIXM
blast_records = NCBIXML.parse(result_handle)

save_file = open("/Users/jonbra/Desktop/my_fasta_seq.fasta", 'w')

for blast_record in blast_records:
  for alignment in blast_record.alignments:
      for hsp in alignment.hsps:
            save_file.write('>%s\n' % (alignment.title,))
  #here possibly to output something to file, between each blast_record
save_file.close()
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.