File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1591,7 +1591,11 @@ class BlurInputSpec(CommandLineInputSpec):
1591
1591
output_file_base = File (
1592
1592
desc = 'output file base' ,
1593
1593
argstr = '%s' ,
1594
- position = - 1 )
1594
+ position = - 1 ,
1595
+ name_source = ['input_file' ],
1596
+ hash_files = False ,
1597
+ name_template = '%s_blur' ,
1598
+ keep_extension = False )
1595
1599
1596
1600
clobber = traits .Bool (
1597
1601
desc = 'Overwrite existing file.' ,
@@ -1726,9 +1730,7 @@ def _gen_output_base(self):
1726
1730
return output_base
1727
1731
1728
1732
def _list_outputs (self ):
1729
- outputs = self .output_spec ().get ()
1730
-
1731
- output_file_base = self ._gen_output_base ()
1733
+ outputs = super (Gennlxfm , self )._list_outputs ()
1732
1734
1733
1735
outputs ['output_file' ] = output_file_base + '_blur.mnc'
1734
1736
You can’t perform that action at this time.
0 commit comments