@@ -521,8 +521,9 @@ def _format_arg(self, name, spec, value):
521
521
522
522
523
523
class MRTMInputSpec (GLMFitInputSpec ):
524
- mrtm1 = InputMultiPath (
525
- traits .Tuple (File (exists = True ), File (exists = True )),
524
+ mrtm1 = traits .Tuple (
525
+ File (exists = True ),
526
+ File (exists = True ),
526
527
mandatory = True ,
527
528
argstr = "--mrtm1 %s %s..." ,
528
529
desc = "RefTac TimeSec : perform MRTM1 kinetic modeling" ,
@@ -546,8 +547,10 @@ class MRTM(GLMFit):
546
547
547
548
548
549
class MRTM2InputSpec (GLMFitInputSpec ):
549
- mrtm2 = InputMultiPath (
550
- traits .Tuple (File (exists = True ), File (exists = True ), traits .Float ),
550
+ mrtm2 = traits .Tuple (
551
+ File (exists = True ),
552
+ File (exists = True ),
553
+ traits .Float ,
551
554
mandatory = True ,
552
555
argstr = "--mrtm2 %s %s %f..." ,
553
556
desc = "RefTac TimeSec k2prime : perform MRTM2 kinetic modeling" ,
@@ -570,8 +573,10 @@ class MRTM2(GLMFit):
570
573
571
574
572
575
class LoganRefInputSpec (GLMFitInputSpec ):
573
- logan = InputMultiPath (
574
- traits .Tuple (File (exists = True ), File (exists = True ), traits .Float ),
576
+ logan = traits .Tuple (
577
+ File (exists = True ),
578
+ File (exists = True ),
579
+ traits .Float ,
575
580
mandatory = True ,
576
581
argstr = "--logan %s %s %g..." ,
577
582
desc = "RefTac TimeSec tstar : perform Logan kinetic modeling" ,
0 commit comments