DNA.
__reversed__
()[source]¶Iterate over positions in this sequence in reverse order.
State: Stable as of 0.4.0.
Yields: | Sequence
|
---|
Examples
>>> from skbio import Sequence
>>> s = Sequence('GGUC')
>>> for c in reversed(s):
... str(c)
'C'
'U'
'G'
'G'