Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit 9c8f8fe

Browse files
committed
Updated doc string
1 parent 53e66bb commit 9c8f8fe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

bluepyopt/ephys/morphologies.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(
7777
'proc replace_axon(){ ... }
7878
If None,the default replace_axon is used
7979
axon_stump_length (float): Length of replacement axon
80-
axon_stump_nsec (int): Number of sections in replacement axon
80+
axon_nseg_frequency (int): frequency of nseg, for axon
8181
nseg_frequency (float): frequency of nseg
8282
do_set_nseg (bool): if True, it will use nseg_frequency
8383
morph_modifiers (list): list of functions to modify the icell
@@ -180,7 +180,8 @@ def set_nseg(self, icell):
180180
section.nseg = 1 + 2 * int(section.L / self.nseg_frequency)
181181

182182
@staticmethod
183-
def replace_axon(sim=None, icell=None, axon_stump_length=60, axon_nseg_frequency=40):
183+
def replace_axon(sim=None, icell=None,
184+
axon_stump_length=60, axon_nseg_frequency=40):
184185
"""Replace axon"""
185186

186187
nsec = len([sec for sec in icell.axonal])

0 commit comments

Comments
 (0)