Skip to content

Commit 8b43716

Browse files
committed
fsl.Cluster: fix some other Bool traits without argstr
1 parent 29153f1 commit 8b43716

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

nipype/interfaces/fsl/model.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1603,16 +1603,17 @@ class ClusterInputSpec(FSLCommandInputSpec):
16031603
desc='number of voxels in the mask')
16041604
dlh = traits.Float(argstr='--dlh=%.10f',
16051605
desc='smoothness estimate = sqrt(det(Lambda))')
1606-
fractional = traits.Bool('--fractional',
1606+
fractional = traits.Bool(False, usedefault=True, argstr='--fractional',
16071607
desc='interprets the threshold as a fraction of the robust range')
16081608
connectivity = traits.Int(argstr='--connectivity=%d',
16091609
desc='the connectivity of voxels (default 26)')
16101610
use_mm = traits.Bool(False, usedefault=True, argstr='--mm',
16111611
desc='use mm, not voxel, coordinates')
1612-
find_min = traits.Bool('--min', desc='find minima instead of maxima')
1613-
no_table = traits.Bool(
1614-
'--no_table', desc='suppresses printing of the table info')
1615-
minclustersize = traits.Bool(argstr='--minclustersize',
1612+
find_min = traits.Bool(False, usedefault=True, argstr='--min',
1613+
desc='find minima instead of maxima')
1614+
no_table = traits.Bool(False, usedefault=True, argstr='--no_table',
1615+
desc='suppresses printing of the table info')
1616+
minclustersize = traits.Bool(False, usedefault=True, argstr='--minclustersize',
16161617
desc='prints out minimum significant cluster size')
16171618
xfm_file = File(argstr='--xfm=%s',
16181619
desc='filename for Linear: input->standard-space transform. Non-linear: input->highres transform')

0 commit comments

Comments
 (0)