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):
253
253
File (
254
254
exists = True ),
255
255
desc = 'Read time series dataset' ,
256
- argstr = '-input %s ' ,
256
+ argstr = '-input "%s" ' ,
257
257
mandatory = True ,
258
258
copyfile = False ,
259
259
sep = " " )
@@ -340,12 +340,7 @@ class Remlfit(AFNICommand):
340
340
def _parse_inputs (self , skip = None ):
341
341
if skip is None :
342
342
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 )
349
344
350
345
def _list_outputs (self ):
351
346
outputs = self .output_spec ().get ()
You can’t perform that action at this time.
0 commit comments