File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,8 @@ class DeconvolveInputSpec(AFNICommandInputSpec):
155
155
out_file = File (desc = 'output statistics file' , argstr = '-bucket %s' )
156
156
num_threads = traits .Int (
157
157
desc = 'run the program with provided number of sub-processes' ,
158
- argstr = '-jobs %d' )
158
+ argstr = '-jobs %d' ,
159
+ nohash = True )
159
160
fout = traits .Bool (
160
161
desc = 'output F-statistic for each stimulus' , argstr = '-fout' )
161
162
rout = traits .Bool (
Original file line number Diff line number Diff line change @@ -69,7 +69,10 @@ def test_Deconvolve_inputs():
69
69
argstr = '-num_stimts %d' ,
70
70
position = - 6 ,
71
71
),
72
- num_threads = dict (argstr = '-jobs %d' , ),
72
+ num_threads = dict (
73
+ argstr = '-jobs %d' ,
74
+ nohash = True ,
75
+ ),
73
76
ortvec = dict (argstr = '-ortvec %s %s' , ),
74
77
out_file = dict (argstr = '-bucket %s' , ),
75
78
outputtype = dict (),
You can’t perform that action at this time.
0 commit comments