Skip to content

Commit 0a89211

Browse files
committed
Fixed issue with Deconvolve doctest
Issue with single quotes around Deconvolve doctest
1 parent 452aa54 commit 0a89211

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/afni/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ class Deconvolve(AFNICommand):
217217
>>> deconvolve.inputs.gltsym = [('+Houses -Apartments')]
218218
>>> deconvolve.inputs.glt_label = [(1, 'Houses_Apartments')]
219219
>>> deconvolve.cmdline # doctest: +ALLOW_UNICODE
220-
'3dDeconvolve -num_stimts 2 -num_glt 1 -glt_label 1 Houses_Apartments -gltsym SYM: +Houses -Apartments -input functional.nii functional2.nii -bucket output.nii -stim_label 1 Houses -stim_label 2 Apartments -stim_times 1 timeseries.txt SPMG1(4) -stim_times 2 timeseries.txt SPMG2(4) -x1D output.1D'
220+
"3dDeconvolve -num_stimts 2 -num_glt 1 -glt_label 1 Houses_Apartments -gltsym 'SYM: +Houses -Apartments' -input functional.nii functional2.nii -bucket output.nii -stim_label 1 Houses -stim_label 2 Apartments -stim_times 1 timeseries.txt 'SPMG1(4)' -stim_times 2 timeseries.txt 'SPMG2(4)' -x1D output.1D"
221221
>>> res = deconvolve.run() # doctest: +SKIP
222222
"""
223223

0 commit comments

Comments
 (0)