@@ -401,19 +401,24 @@ class GLMFitInputSpec(FSTraitedSpec):
401
401
synth = traits .Bool (argstr = "--synth" , desc = "replace input with gaussian" )
402
402
resynth_test = traits .Int (argstr = "--resynthtest %d" , desc = "test GLM by resynthsis" )
403
403
profile = traits .Int (argstr = "--profile %d" , desc = "niters : test speed" )
404
- mrtm1 = InputMultiPath (
405
- traits .Tuple (File (exists = True ), File (exists = True )),
406
- argstr = "--mrtm1 %s %s..." ,
404
+ mrtm1 = traits .Tuple (
405
+ File (exists = True ),
406
+ File (exists = True ),
407
+ argstr = "--mrtm1 %s %s" ,
407
408
desc = "RefTac TimeSec : perform MRTM1 kinetic modeling" ,
408
409
)
409
- mrtm2 = InputMultiPath (
410
- traits .Tuple (File (exists = True ), File (exists = True ), traits .Float ),
411
- argstr = "--mrtm2 %s %s %f..." ,
410
+ mrtm2 = traits .Tuple (
411
+ File (exists = True ),
412
+ File (exists = True ),
413
+ traits .Float ,
414
+ argstr = "--mrtm2 %s %s %f" ,
412
415
desc = "RefTac TimeSec k2prime : perform MRTM2 kinetic modeling" ,
413
416
)
414
- logan = InputMultiPath (
415
- traits .Tuple (File (exists = True ), File (exists = True ), traits .Float ),
416
- argstr = "--logan %s %s %f..." ,
417
+ logan = traits .Tuple (
418
+ File (exists = True ),
419
+ File (exists = True ),
420
+ traits .Float ,
421
+ argstr = "--logan %s %s %f" ,
417
422
desc = "RefTac TimeSec tstar : perform Logan kinetic modeling" ,
418
423
)
419
424
force_perm = traits .Bool (
0 commit comments