Protein.nondegenerates()[source]¶Find positions containing non-degenerate characters in the sequence.
State: Stable as of 0.4.0.
| Returns: | 1D np.ndarray (bool)
|
|---|
See also
Examples
>>> from skbio import DNA
>>> s = DNA('ACWGN')
>>> s.nondegenerates()
array([ True, True, False, True, False], dtype=bool)