1

我试图弄清楚如何ete3.Tree从有向图构建对象networkx?我以我认为会产生预期结果的方式添加了每一个child,但我遇到了麻烦。

edges = [('lvl-1', 'lvl-2.1'), ('lvl-1', 'lvl-2.2'), ('lvl-2.1', 'lvl-3.1'), ('lvl-2.1', 2), ('lvl-2.2', 4), ('lvl-2.2', 6), ('lvl-3.1', 'lvl-4.1'), ('lvl-3.1', 5), ('lvl-4.1', 1), ('lvl-4.1', 3), ('input', 'lvl-1')]
graph = nx.OrderedDiGraph()
graph.add_edges_from(edges)
nx.draw(graph, pos=nx.nx_agraph.graphviz_layout(graph, prog="dot"), with_labels=True, node_size=1000, node_color="lightgray")

在此处输入图像描述

tree = ete3.Tree()
for parent, children in itertools.groupby(graph.edges(), lambda edge:edge[0]):
    subtree = ete3.Tree(name=parent)
    for child in children:
        subtree.add_child(name=child[1])
    tree.add_child(child=subtree, name=parent)
print(tree) 
#       /-lvl-2.1
#    /-|
#   |   \-lvl-2.2
#   |
#   |   /-lvl-3.1
#   |--|
#   |   \-2
#   |
#   |   /-4
#   |--|
# --|   \-6
#   |
#   |   /-lvl-4.1
#   |--|
#   |   \-5
#   |
#   |   /-1
#   |--|
#   |   \-3
#   |
#    \- /-lvl-1

我也尝试了以下方法,但没有奏效:

tree = ete3.Tree()
for parent, child in graph.edges():
    if parent not in tree:
        tree.add_child(name=parent)
    subtree = tree.search_nodes(name=parent)[0]
    subtree.add_child(name=child)
print(tree)
#                /-1
#             /-|
#          /-|   \-3
#         |  |
#       /-|   \-5
#      |  |
#    /-|   \-2
#   |  |
#   |  |   /-4
# --|   \-|
#   |      \-6
#   |
#    \- /-lvl-1
4

2 回答 2

2
# Graph
edges = [('lvl-1', 'lvl-2.1'), ('lvl-1', 'lvl-2.2'), ('lvl-2.1', 'lvl-3.1'), ('lvl-2.1', 2), ('lvl-2.2', 4), ('lvl-2.2', 6), ('lvl-3.1', 'lvl-4.1'), ('lvl-3.1', 5), ('lvl-4.1', 1), ('lvl-4.1', 3), ('input', 'lvl-1')]
G = nx.OrderedDiGraph()
G.add_edges_from(edges)

# Tree
root = "input"
subtrees = {node:ete3.Tree(name=node) for node in G.nodes()}
[*map(lambda edge:subtrees[edge[0]].add_child(subtrees[edge[1]]), G.edges())]
tree = subtrees[root]
print(tree.get_ascii())
#                                /-1
#                         /lvl-4.1
#                  /lvl-3.1      \-3
#                 |      |
#           /lvl-2.1      \-5
#          |      |
# -inputlvl-1      \-2
#          |
#          |       /-4
#           \lvl-2.2
#                  \-6
于 2018-07-13T19:41:00.917 回答
-1

子树和从 networkX 对象读取没问题,问题是您将所有子树tree直接添加到原始实例中。在 ete3 中,Tree实际上只是一个节点(包括指向其后代的指针,如果有的话),因此tree.add_child将新的子节点/子树直接添加到根节点。

相反,您应该做的是遍历 ete tree 的叶子,找到那个位置node.name == parent并将所有孩子附加到它上面。此外,您应该将它们一一附加,而不是预先生成子树。否则,您将获得具有单亲和单子的额外内部节点。

编辑:

您的代码的第二个版本几乎是正确的,但是您没有考虑到如果根不是它们的实际父节点,则节点永远不会附加到树(即根)。这可能就是为什么你lvl-1作为一个单独的节点而不是其他节点的父节点。另外,我不确定 networkX 图形遍历顺序,这可能很重要。更安全(如果更丑)的版本如下所示:

# Setting up a root node for lvl-1 to attach to
tree.add_child(name='input')
# A copy in a list, because you may not want to edit the original graph
edges = list(graph.edges)
while len(edges) > 0:
    for parent, child in edges:
        # check if this edge's parent is in the tree
        for leaf it tree.get_leaves(): 
            if leaf.name == parent:
                # if it is, add child and thus create an edge
                leaf.add_child(name=child)
            # Wouldn't want to add the same edge twice, would you?
            edges.remove((parent, child))
    # Now if there are edges still unplaced, try again.

那里可能有几个错别字,而且绝对是超级慢。边缘计数大约为 O(n**2) 或更糟,所有迭代和列表删除都是如此。可能有一种方法可以将图从根走到叶,这不需要边缘列表的副本(并且将在一次迭代中工作)。但它最终会产生一棵正确的树。

于 2018-07-11T03:15:24.653 回答