skbio.io
skbio.sequence
skbio.alignment
skbio.tree
skbio.workflow
skbio.diversity
skbio.stats
skbio.metadata
skbio.util
Sequence.
__reversed__
Iterate over positions in this sequence in reverse order.
State: Stable as of 0.4.0.
Examples
>>> from skbio import Sequence >>> s = Sequence('GGUC') >>> for c in reversed(s): ... str(c) 'C' 'U' 'G' 'G'