File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
nipype/interfaces/freesurfer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1468,7 +1468,7 @@ class MNIBiasCorrectionInputSpec(FSTraitedSpec):
1468
1468
in_file = File (exists = True , mandatory = True , argstr = "--i %s" ,
1469
1469
desc = "input volume. Input can be any format accepted by mri_convert." )
1470
1470
# optional
1471
- out_file = File (argstr = "--o %s" , name_source = ['in_file' ], genfile = True ,
1471
+ out_file = File (argstr = "--o %s" , name_source = ['in_file' ],
1472
1472
name_template = '%s_output' , hash_files = False , keep_extension = True ,
1473
1473
desc = "output volume. Output can be any format accepted by mri_convert. " +
1474
1474
"If the output format is COR, then the directory must exist." )
@@ -1528,7 +1528,7 @@ class MNIBiasCorrection(FSCommand):
1528
1528
output_spec = MNIBiasCorrectionOutputSpec
1529
1529
1530
1530
def _list_outputs (self ):
1531
- outputs = self ._outputs ().get ()
1531
+ outputs = self ._output_spec ().get ()
1532
1532
outputs ["out_file" ] = os .path .abspath (self .inputs .out_file )
1533
1533
return outputs
1534
1534
You can’t perform that action at this time.
0 commit comments