Merged
Changes from all commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff 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