Skip to content

Commit 2c8e2cd

Browse files
mnoergaardeffigies
andauthored
remove inputmultipath for mrtm1, mrtm2 and logan
Co-authored-by: Chris Markiewicz <[email protected]>
1 parent e3f56da commit 2c8e2cd

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

nipype/interfaces/freesurfer/model.py

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -401,19 +401,24 @@ class GLMFitInputSpec(FSTraitedSpec):
401401
synth = traits.Bool(argstr="--synth", desc="replace input with gaussian")
402402
resynth_test = traits.Int(argstr="--resynthtest %d", desc="test GLM by resynthsis")
403403
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",
407408
desc="RefTac TimeSec : perform MRTM1 kinetic modeling",
408409
)
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",
412415
desc="RefTac TimeSec k2prime : perform MRTM2 kinetic modeling",
413416
)
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",
417422
desc="RefTac TimeSec tstar : perform Logan kinetic modeling",
418423
)
419424
force_perm = traits.Bool(

0 commit comments

Comments
 (0)