File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ class RemlfitInputSpec(AFNICommandInputSpec):
253253 File (
254254 exists = True ),
255255 desc = 'Read time series dataset' ,
256- argstr = '-input %s ' ,
256+ argstr = '-input "%s" ' ,
257257 mandatory = True ,
258258 copyfile = False ,
259259 sep = " " )
@@ -340,12 +340,7 @@ class Remlfit(AFNICommand):
340340 def _parse_inputs (self , skip = None ):
341341 if skip is None :
342342 skip = []
343- skip += ['in_files' ]
344- # we'll have to deal with input ourselves because AFNI might want
345- # everything into double quotes
346- inputs = super (Remlfit , self )._parse_inputs (skip )
347- inputs = [u'-input "{0}"' .format (' ' .join (self .inputs .in_files ))] + inputs
348- return inputs
343+ return super (Remlfit , self )._parse_inputs (skip )
349344
350345 def _list_outputs (self ):
351346 outputs = self .output_spec ().get ()
You can’t perform that action at this time.
0 commit comments