skbio.io
skbio.sequence
skbio.alignment
skbio.tree
skbio.workflow
skbio.diversity
skbio.stats
skbio.metadata
skbio.util
RNA.definites()
查找序列中包含确定字符的位置。
状态:0.5.0稳定。
布尔向量,其中 True 表明在生物序列中的那个位置有一个确定的特征。
True
1D np.ndarray (bool)
参见
has_definites, degenerates
has_definites
degenerates
示例
>>> from skbio import DNA >>> s = DNA('ACWGN') >>> s.definites() array([ True, True, False, True, False], dtype=bool)