skbio.io
skbio.sequence
skbio.alignment
skbio.tree
skbio.workflow
skbio.diversity
skbio.stats
skbio.metadata
skbio.util
Protein.
__iter__
Iterate over positions in this sequence.
State: Stable as of 0.4.0.
Sequence – Single character subsequence, one for each position in the sequence.
Examples
>>> from skbio import Sequence >>> s = Sequence('GGUC') >>> for c in s: ... str(c) 'G' 'G' 'U' 'C'