Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions nipype/interfaces/afni/tests/test_auto_CatMatvec.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ def test_CatMatvec_inputs():
),
out_file=dict(
argstr=' > %s',
keep_extension=False,
mandatory=True,
name_source='in_file',
name_template='%s_cat.aff12.1D',
position=-1,
),
outputtype=dict(),
Expand Down
5 changes: 4 additions & 1 deletion nipype/interfaces/afni/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,8 +564,11 @@ class CatMatvecInputSpec(AFNICommandInputSpec):
argstr="%s",
position=-2)
out_file = File(
desc="File to write concattenated matvecs to",
argstr=" > %s",
name_template='%s_cat.aff12.1D',
name_source='in_file',
keep_extension=False,
desc="File to write concattenated matvecs to",
position=-1,
mandatory=True)
matrix = traits.Bool(
Expand Down