本文整理汇总了Python中PhyloBuddy.consensus_tree方法的典型用法代码示例。如果您正苦于以下问题:Python PhyloBuddy.consensus_tree方法的具体用法?Python PhyloBuddy.consensus_tree怎么用?Python PhyloBuddy.consensus_tree使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PhyloBuddy
的用法示例。
在下文中一共展示了PhyloBuddy.consensus_tree方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_consensus_tree_95
# 需要导入模块: import PhyloBuddy [as 别名]
# 或者: from PhyloBuddy import consensus_tree [as 别名]
def test_consensus_tree_95(phylobuddy, next_hash):
tester = Pb.consensus_tree(phylobuddy, frequency=0.95)
assert phylo_to_hash(tester) == next_hash
示例2: test_consensus_tree
# 需要导入模块: import PhyloBuddy [as 别名]
# 或者: from PhyloBuddy import consensus_tree [as 别名]
def test_consensus_tree(phylobuddy, next_hash):
tester = Pb.consensus_tree(phylobuddy)
assert phylo_to_hash(tester) == next_hash