当前位置: 首页>>代码示例>>Python>>正文


Python Collation.to_extended_suffix_array方法代码示例

本文整理汇总了Python中collatex.Collation.to_extended_suffix_array方法的典型用法代码示例。如果您正苦于以下问题:Python Collation.to_extended_suffix_array方法的具体用法?Python Collation.to_extended_suffix_array怎么用?Python Collation.to_extended_suffix_array使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在collatex.Collation的用法示例。


在下文中一共展示了Collation.to_extended_suffix_array方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_lcp_intervals_number_of_witnesses_Hermans_case

# 需要导入模块: from collatex import Collation [as 别名]
# 或者: from collatex.Collation import to_extended_suffix_array [as 别名]
 def test_lcp_intervals_number_of_witnesses_Hermans_case(self):
     collation = Collation()
     collation.add_plain_witness("W1", "a b c d F g h i ! K ! q r s t")
     collation.add_plain_witness("W2", "a b c d F g h i ! q r s t")
     collation.add_plain_witness("W3", "a b c d E g h i ! q r s t")
     extsufarr = collation.to_extended_suffix_array()
     intervals = extsufarr.split_lcp_array_into_intervals()
     potential_block = intervals[1] # ! q r s t
     self.assertEqual(3, potential_block.number_of_witnesses)
开发者ID:pombredanne,项目名称:collatex,代码行数:11,代码来源:test_extended_suffix_array.py

示例2: test_split_lcp_intervals_into_smaller_intervals

# 需要导入模块: from collatex import Collation [as 别名]
# 或者: from collatex.Collation import to_extended_suffix_array [as 别名]
 def test_split_lcp_intervals_into_smaller_intervals(self):
     collation = Collation()
     collation.add_plain_witness("W1", "the cat")
     collation.add_plain_witness("W2", "the cat")
     collation.add_plain_witness("W3", "the cat")
     extsufarr = collation.to_extended_suffix_array()
     split_intervals = extsufarr.split_lcp_array_into_intervals()
     self.assertIntervalIn(0, 2, 3, split_intervals) # the cat
     self.assertIntervalIn(1, 1, 3, split_intervals) # cat
     self.assertEqual(2, len(split_intervals), "More items: "+str(split_intervals))
开发者ID:MarcelloPerathoner,项目名称:collatex,代码行数:12,代码来源:test_collatex_block_witnesses.py

示例3: test_filter_potential_blocks

# 需要导入模块: from collatex import Collation [as 别名]
# 或者: from collatex.Collation import to_extended_suffix_array [as 别名]
 def test_filter_potential_blocks(self):
     collation = Collation()
     collation.add_plain_witness("W1", "a a")
     collation.add_plain_witness("w2", "a")
     extsufarr = collation.to_extended_suffix_array()
     intervals = extsufarr.split_lcp_array_into_intervals()
     # expectations
     # There is one interval with length 1, number of occurrences 3, number of witnesses: 2
     a_interval = intervals[0] # a
     self.assertEqual(2, a_interval.number_of_witnesses)
     self.assertEqual(1, a_interval.length)
     self.assertEqual(3, a_interval.number_of_occurrences)
开发者ID:pombredanne,项目名称:collatex,代码行数:14,代码来源:test_extended_suffix_array.py


注:本文中的collatex.Collation.to_extended_suffix_array方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。