DendriteToSoma

Contents

DendriteToSoma#

class braintools.conn.DendriteToSoma(source_dendrites=None, **kwargs)#

Specialized connectivity from dendrites to soma.

This creates connections from dendritic compartments to soma compartments, modeling dendritic integration and signal propagation to the cell body.

Parameters:

source_dendrites (List[int]) – List of dendrite compartment types to use as sources.

Examples

>>> dend_soma = DendriteToSoma(
...     source_dendrites=[BASAL_DENDRITE, APICAL_DENDRITE],
...     connection_prob=0.6
... )