Skip to content

Commit 99b354a

Browse files
committed
Merge pull request #813 from chrisfilo/fix/melodic
Proper list conversion. Closes #811
2 parents 2955bad + dc42306 commit 99b354a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

nipype/interfaces/fsl/model.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1272,7 +1272,8 @@ def _list_outputs(self):
12721272
class MELODICInputSpec(FSLCommandInputSpec):
12731273
in_files = InputMultiPath(
12741274
File(exists=True), argstr="-i %s", mandatory=True, position=0,
1275-
desc="input file names (either single file name or a list)")
1275+
desc="input file names (either single file name or a list)",
1276+
sep=",")
12761277
out_dir = Directory(
12771278
argstr="-o %s", desc="output directory name", genfile=True)
12781279
mask = File(exists=True, argstr="-m %s",

nipype/interfaces/fsl/tests/test_auto_MELODIC.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ def test_MELODIC_inputs():
3232
in_files=dict(argstr='-i %s',
3333
mandatory=True,
3434
position=0,
35+
sep=',',
3536
),
3637
log_power=dict(argstr='--logPower',
3738
),

0 commit comments

Comments
 (0)