Skip to content

Commit 999a113

Browse files
committed
add usedefault
1 parent 9fdd7a5 commit 999a113

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

nipype/interfaces/afni/preprocess.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2400,8 +2400,9 @@ class OutlierCountInputSpec(AFNICommandInputSpec):
24002400
desc='detrend each voxel timeseries with polynomials')
24012401
legendre = traits.Bool(False, usedefault=True, argstr='-legendre',
24022402
desc='use Legendre polynomials')
2403-
out_file = File(name_template='%s_outliers', name_source=['in_file'], argstr='> %s',
2404-
keep_extension=False, position=-1, desc='capture standard output')
2403+
out_file = File(
2404+
name_template='%s_outliers', name_source=['in_file'], argstr='> %s',
2405+
usedefault=True, keep_extension=False, position=-1, desc='capture standard output')
24052406

24062407

24072408
class OutlierCountOutputSpec(AFNICommandOutputSpec):
@@ -2475,8 +2476,9 @@ class QualityIndexInputSpec(AFNICommandInputSpec):
24752476
interval = traits.Bool(False, usedefault=True, argstr='-range',
24762477
desc='write out the median + 3.5 MAD of outlier'
24772478
' count with each timepoint')
2478-
out_file = File(name_template='%s_tqual', name_source=['in_file'], argstr='> %s',
2479-
keep_extension=False, position=-1, desc='capture standard output')
2479+
out_file = File(
2480+
name_template='%s_tqual', name_source=['in_file'], argstr='> %s', usedefault=True,
2481+
keep_extension=False, position=-1, desc='capture standard output')
24802482

24812483

24822484
class QualityIndexOutputSpec(AFNICommandOutputSpec):

0 commit comments

Comments
 (0)