本文整理汇总了Python中ete3.Tree.add_feature方法的典型用法代码示例。如果您正苦于以下问题:Python Tree.add_feature方法的具体用法?Python Tree.add_feature怎么用?Python Tree.add_feature使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ete3.Tree
的用法示例。
在下文中一共展示了Tree.add_feature方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: xrange
# 需要导入模块: from ete3 import Tree [as 别名]
# 或者: from ete3.Tree import add_feature [as 别名]
'''
Node Style End
#######################'''
for r in xrange(rows):
cell_id = trackResult[r, 0]
time_begin = trackResult[r, 1]
time_end = trackResult[r, 2]
parent_id = trackResult[r, 3]
time_duration = np.abs(time_begin-time_end)
# for root
if parent_id == 0:
# Add name to root for the first iteration
root.add_feature("name", str(cell_id))
# change the branch length
root.add_feature("dist", time_duration)
#change node style
root.set_style(ns_root)
# set node name to face
nameFace = TextFace(root.name)
nameFace.fgcolor = "white"
nameFace.fsize = 15
# nameFace.border.width = 1
nameFace.background.color = "green"
node_cur.add_face(nameFace, column=1, position="branch-bottom")
else: # for child
#### search the parent node by parent_id