GrammaredSequence.
values
¶Array containing underlying sequence characters.
State: Stable as of 0.4.0.
Notes
This property is not writeable.
Examples
>>> from skbio import Sequence
>>> s = Sequence('AACGA')
>>> s.values
array([b'A', b'A', b'C', b'G', b'A'],
dtype='|S1')