You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
555 B
19 lines
555 B
2 years ago
|
"""
|
||
|
The cnmodel.data package contains information about ion channel densities,
|
||
|
connectivity, synaptic properties, and population distributions. These values
|
||
|
are used by the Cell, Synapse, Population, and related classes to determine
|
||
|
all model construction parameters.
|
||
|
|
||
|
Values are stored in python strings that contain human-readable tables with
|
||
|
provenance documentation.
|
||
|
"""
|
||
|
|
||
|
|
||
|
from ._db import get, get_source, add_table_data, report_changes, setval
|
||
|
|
||
|
|
||
|
from . import connectivity
|
||
|
from . import synapses
|
||
|
from . import populations
|
||
|
from . import ionchannels
|