本文整理匯總了Python中Bio.AlignIO.MafIO.MafIndex._ucscbin方法的典型用法代碼示例。如果您正苦於以下問題:Python MafIndex._ucscbin方法的具體用法?Python MafIndex._ucscbin怎麽用?Python MafIndex._ucscbin使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Bio.AlignIO.MafIO.MafIndex
的用法示例。
在下文中一共展示了MafIndex._ucscbin方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_ucscbin
# 需要導入模塊: from Bio.AlignIO.MafIO import MafIndex [as 別名]
# 或者: from Bio.AlignIO.MafIO.MafIndex import _ucscbin [as 別名]
def test_ucscbin(self):
data = [(25079603, 25079787, 776),
(25128173, 25128248, 776),
(50312474, 50312703, 968),
(41905591, 41906101, 904),
(16670899, 16673060, 712),
(75495356, 75495494, 1160),
(92259501, 92261053, 1288),
(83834063, 83838132, 1224),
(7309597, 7310411, 640),
(6190410, 6190999, 632)]
for x, y, z in data:
self.assertEqual(MafIndex._ucscbin(x, y), z)
for x, y, z in data:
self.assertRaises(TypeError, MafIndex._ucscbin, str(x), str(y))