Skip to content

Commit d4658cf

Browse files
committed
ENH: add -noFDR option to 3dDeconvolve
1 parent d3a7526 commit d4658cf

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

nipype/interfaces/afni/model.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,10 @@ class DeconvolveInputSpec(AFNICommandInputSpec):
165165
vout = traits.Bool(
166166
desc='output the sample variance (MSE) for each stimulus',
167167
argstr='-vout')
168+
nofdr = traits.Bool(
169+
desc="Don't compute the statistic-vs-FDR curves for the bucket "
170+
"dataset.",
171+
argstr='-noFDR')
168172
global_times = traits.Bool(
169173
desc='use global timing for stimulus timing files',
170174
argstr='-global_times',

nipype/interfaces/afni/tests/test_auto_Deconvolve.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def test_Deconvolve_inputs():
5959
noblock=dict(argstr='-noblock', ),
6060
nocond=dict(argstr='-nocond', ),
6161
nodmbase=dict(argstr='-nodmbase', ),
62+
nofdr=dict(argstr='-noFDR', ),
6263
nolegendre=dict(argstr='-nolegendre', ),
6364
nosvd=dict(argstr='-nosvd', ),
6465
num_glt=dict(

0 commit comments

Comments
 (0)