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


Python Node.otu方法代码示例

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


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

示例1: parse_trees

# 需要导入模块: from tree import Node [as 别名]
# 或者: from tree.Node import otu [as 别名]
def parse_trees(e, otus):
    """
    Get trees from an etree object

    Args:
        e: A nexml document parsed by etree
        otus: OTUs returned by parse_otus
    Returns:
        list: A list of ivy Storage objects each
          containing every node of a tree.
    """
    from tree import Node
    v = []
    for tb in e.findall(NEXML+"trees"):
        for te in tb.findall(NEXML+"tree"):
            t = storage.Storage()
            t.attrib = storage.Storage(te.attrib)
            t.nodes = {}
            for n in te.findall(NEXML+"node"):
                node = Node()
                if n.attrib.get("otu"):
                    node.isleaf = True
                    node.otu = otus[n.attrib["otu"]]
                    node.label = node.otu.label
                t.nodes[n.attrib["id"]] = node
            for edge in te.findall(NEXML+"edge"):
                d = edge.attrib
                n = t.nodes[d["target"]]
                p = t.nodes[d["source"]]
                length = d.get("length")
                if length:
                    n.length = float(length)
                p.add_child(n)
            r = [ n for n in t.nodes.values() if not n.parent ]
            assert len(r)==1
            r = r[0]
            r.isroot = True
            for i, n in enumerate(r): n.id = i+1
            t.root = r
            v.append(t)
    return v
开发者ID:rhr,项目名称:ivy,代码行数:43,代码来源:treebase.py


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