當前位置: 首頁>>代碼示例>>Python>>正文


Python Cluster.split方法代碼示例

本文整理匯總了Python中pyicoteolib.core.Cluster.split方法的典型用法代碼示例。如果您正苦於以下問題:Python Cluster.split方法的具體用法?Python Cluster.split怎麽用?Python Cluster.split使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在pyicoteolib.core.Cluster的用法示例。


在下文中一共展示了Cluster.split方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_split

# 需要導入模塊: from pyicoteolib.core import Cluster [as 別名]
# 或者: from pyicoteolib.core.Cluster import split [as 別名]
    def test_split(self):
        double_cluster = Cluster(rounding=True)
        double_cluster.read_line('chr1  100  215  5:1|10:5|5:7|5:80|5:1|5:40|15:1|10:2|5:3|5:8|10:6|10:5|10:4|10:3|6:2')

        results = double_cluster.split(0.01)
        correct_clusters = [Cluster(rounding=True), Cluster(rounding=True), Cluster(rounding=True)]
        correct_clusters[0].read_line('chr1    100      125      5:1|10:5|5:7|5:80|2:1')
        correct_clusters[1].read_line('chr1    128      141      2:1|5:40|7:1')
        correct_clusters[2].read_line('chr1    143      215      7:1|10:2|5:3|5:8|10:6|10:5|10:4|10:3|6:2')
        for i in range (0,len(correct_clusters)):
            self.assertEqual(results[i].write_line(), correct_clusters[i].write_line())
開發者ID:23Skidoo,項目名稱:genomizer-server,代碼行數:13,代碼來源:testCore.py


注:本文中的pyicoteolib.core.Cluster.split方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。