Skip to content

Commit cbc904d

Browse files
committed
use '_unifized' as template for out_file
1 parent 4ac9162 commit cbc904d

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

nipype/interfaces/afni/tests/test_auto_Unifize.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def test_Unifize_inputs():
3333
),
3434
out_file=dict(argstr='-prefix %s',
3535
name_source='in_file',
36+
name_template='%s_unifized',
3637
),
3738
outputtype=dict(),
3839
quiet=dict(argstr='-quiet',

nipype/interfaces/afni/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2291,6 +2291,7 @@ class UnifizeInputSpec(AFNICommandInputSpec):
22912291
exists=True,
22922292
copyfile=False)
22932293
out_file = File(
2294+
name_template='%s_unifized',
22942295
desc='output image file name',
22952296
argstr='-prefix %s',
22962297
name_source='in_file')

0 commit comments

Comments
 (0)