You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes it would be useful to do something like:
forlineinFastaRecord:
dosomethingwiththeline
Currently FastaRecord's __getitem__ returns the entire contents of a FASTA entry as a string. Maybe a __iter__ method could return smaller chunks to limit memory consumption. Might be able to use the read-ahead buffer from #26.
The text was updated successfully, but these errors were encountered:
mdshw5
changed the title
Expose FastaRecord __next__ method for hybrid line/object-based iteration
Expose FastaRecord __iter__ method for hybrid line/object-based iteration
Nov 20, 2014
Sometimes it would be useful to do something like:
Currently FastaRecord's
__getitem__
returns the entire contents of a FASTA entry as a string. Maybe a__iter__
method could return smaller chunks to limit memory consumption. Might be able to use the read-ahead buffer from #26.The text was updated successfully, but these errors were encountered: