Skip to content

Commit

Permalink
Merge pull request nipy#2892 from hstojic/patch-AFNI-utils-MaskTool
Browse files Browse the repository at this point in the history
ENH: Allow afni.MaskTool to take multiple input files
  • Loading branch information
effigies authored Feb 25, 2019
2 parents a3f5115 + 7d4af09 commit 6071c94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nipype/interfaces/afni/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1636,12 +1636,12 @@ def _format_arg(self, name, spec, value):


class MaskToolInputSpec(AFNICommandInputSpec):
in_file = File(
in_file = InputMultiPath(
File(exists=True),
desc='input file or files to 3dmask_tool',
argstr='-input %s',
position=-1,
mandatory=True,
exists=True,
copyfile=False)
out_file = File(
name_template='%s_mask',
Expand Down

0 comments on commit 6071c94

Please sign in to comment.