biopython v1.71.0 Bio.Blast.NCBIStandalone.Iterator
Iterates over a file of multiple BLAST results.
Methods: next Return the next record from the stream, or None.
Link to this section Summary
Functions
Initialize a new iterator
Return the next Blast record from the file
Python 2 style alias for Python 3 style next method
Link to this section Functions
Link to this function
__init__()
Initialize a new iterator.
Arguments:
- handle is a file-like object.
- parser is an optional Parser object to change the results into another form. If set to None, then the raw contents of the file will be returned.
Link to this function
__next__()
Return the next Blast record from the file.
If no more records, return None.
Link to this function
next()
Python 2 style alias for Python 3 style next method.