File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1487,7 +1487,7 @@ class NewSegmentInputSpec(SPMCommandInputSpec):
1487
1487
desc = """A tuple with the following fields:
1488
1488
- bias reguralisation (0-10)
1489
1489
- FWHM of Gaussian smoothness of bias
1490
- - which maps to save (Corrected, Field ) - a tuple of two boolean values""" ,
1490
+ - which maps to save (Field, Corrected ) - a tuple of two boolean values""" ,
1491
1491
field = 'channel' )
1492
1492
tissues = traits .List (
1493
1493
traits .Tuple (
@@ -1681,11 +1681,11 @@ def _list_outputs(self):
1681
1681
1682
1682
if isdefined (self .inputs .channel_info ):
1683
1683
if self .inputs .channel_info [2 ][0 ]:
1684
- outputs ['bias_corrected_images' ].append (
1685
- os .path .join (pth , "m%s.nii" % (base )))
1686
- if self .inputs .channel_info [2 ][1 ]:
1687
1684
outputs ['bias_field_images' ].append (
1688
1685
os .path .join (pth , "BiasField_%s.nii" % (base )))
1686
+ if self .inputs .channel_info [2 ][1 ]:
1687
+ outputs ['bias_corrected_images' ].append (
1688
+ os .path .join (pth , "m%s.nii" % (base )))
1689
1689
return outputs
1690
1690
1691
1691
You can’t perform that action at this time.
0 commit comments