scikit-bio
skbio.io
skbio.sequence
skbio.alignment
skbio.tree
skbio.diversity
skbio.stats
skbio.embedding
skbio.table
skbio.metadata
skbio.workflow
skbio.util
skbio.sequence.distance
DNA.__reversed__()
Iterate over positions in this sequence in reverse order.
Single character subsequence, one for each position in the sequence.
Examples
>>> from skbio import Sequence >>> s = Sequence('GGUC') >>> for c in reversed(s): ... str(c) 'C' 'U' 'G' 'G'
previous
skbio.sequence.DNA.__ne__
next
skbio.sequence.DNA.__str__