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.
24 lines
471 B
24 lines
471 B
2 years ago
|
"""
|
||
|
Cell definitions for models.
|
||
|
|
||
|
This class includes a number of different cell definitions and default
|
||
|
conductances for point models.
|
||
|
"""
|
||
|
|
||
|
from .bushy import *
|
||
|
from .tstellate import *
|
||
|
from .dstellate import *
|
||
|
from .cartwheel import *
|
||
|
from .pyramidal import *
|
||
|
from .sgc import *
|
||
|
from .octopus import *
|
||
|
from .tuberculoventral import *
|
||
|
from .msoprincipal import *
|
||
|
from .hh import *
|
||
|
|
||
|
from .cell import Cell
|
||
|
|
||
|
|
||
|
def cell_from_section(sec):
|
||
|
return Cell.from_section(sec)
|