本文整理汇总了Python中PyOpenWorm.values方法的典型用法代码示例。如果您正苦于以下问题:Python PyOpenWorm.values方法的具体用法?Python PyOpenWorm.values怎么用?Python PyOpenWorm.values使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PyOpenWorm
的用法示例。
在下文中一共展示了PyOpenWorm.values方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: update_neurons_and_muscles_with_lineage_and_descriptions
# 需要导入模块: import PyOpenWorm [as 别名]
# 或者: from PyOpenWorm import values [as 别名]
def update_neurons_and_muscles_with_lineage_and_descriptions():
v = P.values('neurons and muscles')
#XXX: This could be expensive...the lineage name and description should be loaded with
# the cell though.
cells = {next(x.name()) : (norn(x.lineageName()), norn(x.description())) for x in P.Cell().load() }
def dtt(x):
""" Do the thing """
try:
name = next(x.name())
if cells[name][0] is not None:
x.lineageName(cells[name][0])
if cells[name][1] is not None:
x.description(cells[name][1])
v.value(x)
except:
traceback.print_exc()
for x in P.Neuron().load():
dtt(x)
for x in P.Muscle().load():
dtt(x)
v.save()