Skip to content

Commit f98432c

Browse files
authored
Merge pull request #2415 from mvdoc/bf/deconvolveortvec
FIX: fix ortvec argstr for Deconvolve
2 parents a627ced + 28c9513 commit f98432c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nipype/interfaces/afni/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ class DeconvolveInputSpec(AFNICommandInputSpec):
142142
desc='this option lets you input a rectangular array of 1 or more '
143143
'baseline vectors from a file. This method is a fast way to '
144144
'include a lot of baseline regressors in one step. ',
145-
argstr='ortvec %s')
145+
argstr='-ortvec %s %s')
146146
x1D = File(desc='specify name for saved X matrix', argstr='-x1D %s')
147147
x1D_stop = traits.Bool(
148148
desc='stop running after writing .xmat.1D file', argstr='-x1D_stop')

nipype/interfaces/afni/tests/test_auto_Deconvolve.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def test_Deconvolve_inputs():
7373
nohash=True,
7474
usedefault=True,
7575
),
76-
ortvec=dict(argstr='ortvec %s', ),
76+
ortvec=dict(argstr='-ortvec %s %s', ),
7777
out_file=dict(argstr='-bucket %s', ),
7878
outputtype=dict(),
7979
polort=dict(argstr='-polort %d', ),

0 commit comments

Comments
 (0)