Skip to content

Commit 918da62

Browse files
committed
Merge branch 'master' of https://github.com/nipy/nipype.git
2 parents 49832d9 + 6c37d7f commit 918da62

File tree

1 file changed

+3
-2
lines changed
  • nipype/interfaces/camino

1 file changed

+3
-2
lines changed

nipype/interfaces/camino/dti.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"""
99
from nipype.interfaces.base import (CommandLineInputSpec, CommandLine, traits,
1010
TraitedSpec, File, StdOutCommandLine,
11-
StdOutCommandLineInputSpec, isdefined)
11+
StdOutCommandLineInputSpec, isdefined,
12+
InputMultiPath)
1213
from nipype.utils.filemanip import split_filename
1314
import os
1415

@@ -337,7 +338,7 @@ class PicoPDFsInputSpec(StdOutCommandLineInputSpec):
337338
inputmodel = traits.Enum('dt', 'multitensor', 'pds',
338339
argstr='-inputmodel %s', position=2, desc='input model type', usedefault=True)
339340

340-
luts = traits.List(File(exists=True), argstr='-luts %s', minlen=1, maxlen=3, mandatory=True,
341+
luts = InputMultiPath(File(exists=True), argstr='-luts %s', mandatory=True,
341342
desc='Files containing the lookup tables.'\
342343
'For tensor data, one lut must be specified for each type of inversion used in the image (one-tensor, two-tensor, three-tensor).'\
343344
'For pds, the number of LUTs must match -numpds (it is acceptable to use the same LUT several times - see example, above).'\

0 commit comments

Comments
 (0)