Skip to content

Commit 618d201

Browse files
author
bpinsard
committed
fixes
1 parent b81c469 commit 618d201

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/interfaces/spm/preprocess.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,7 @@ class VBMSegmentInputSpec(SPMCommandInputSpec):
11051105

11061106
bias_fwhm = traits.Enum(
11071107
60,
1108-
(30, 40, 50, 70 , 80, 90, 100, 110, 120, 130, 'Inf'),
1108+
(30, 40, 50, 60, 70 , 80, 90, 100, 110, 120, 130, 'Inf'),
11091109
field='estwrite.opts.biasfwhm',
11101110
usedefault=True,
11111111
desc='FWHM of Gaussian smoothness of bias')
@@ -1289,7 +1289,7 @@ def _list_outputs(self):
12891289
if self.inputs.bias_corrected_native:
12901290
outputs['bias_corrected_images'].append(os.path.join(pth,"m%s.nii"%(base)))
12911291
if self.inputs.bias_corrected_normalized:
1292-
outputs['normalized_bias_corrected_images'].append(os.path.join(pth,"wm%s.nii"%(base)))
1292+
outputs['normalized_bias_corrected_images'].append(os.path.join(pth,"wm%s%s.nii"%(dartel_px,base)))
12931293

12941294
if self.inputs.deformation_field[0]:
12951295
outputs['forward_deformation_field'].append(os.path.join(pth,"y_%s%s.nii"%(dartel_px,base)))

0 commit comments

Comments
 (0)