skbio.sequence.RNA.observed_chars

RNA.observed_chars

Set of observed characters in the sequence.

State: Experimental as of 0.4.1.

Notes

This property is not writeable.

Examples

>>> from skbio import Sequence
>>> s = Sequence('AACGAC')
>>> s.observed_chars == {'G', 'A', 'C'}
True