DNA.
nondegenerates
()[source]¶Find positions containing non-degenerate characters in the sequence.
Note
Deprecated as of 0.5.0 for removal in 0.5.2. Renamed to definites
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)