本文整理汇总了Python中neuro_object.NeuroObject类的典型用法代码示例。如果您正苦于以下问题:Python NeuroObject类的具体用法?Python NeuroObject怎么用?Python NeuroObject使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了NeuroObject类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: __init__
def __init__(self, network, parentRegion = None, ontologyTerm = None, *args, **keywords):
"""
Regions represent a physical subset of a nervous system. They can also be hierarchical with regions nested within other regions. Regions can also be associated with an entry in one of the :class:`ontologies <Library.Ontology.Ontology>` in the library.
You create a region by messaging a network:
>>> region1 = network.createRegion(...)
"""
if ontologyTerm is not None:
if 'name' not in keywords:
keywords['name'] = ontologyTerm.name
if 'abbreviation' not in keywords and ontologyTerm.abbreviation is not None:
keywords['abbreviation'] = ontologyTerm.abbreviation
NeuroObject.__init__(self, network, *args, **keywords)
self.parentRegion = None
self.subRegions = []
self.ontologyTerm = ontologyTerm
self.arborizations = []
self.pathways = []
self.neurons = []
if parentRegion is not None:
parentRegion._addSubRegion(self)
开发者ID:JaneliaSciComp,项目名称:Neuroptikon,代码行数:25,代码来源:region.py
注:本文中的neuro_object.NeuroObject类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论