Skip to content

Commit e42d7b5

Browse files
authored
Merge branch 'main' into glm_checks
2 parents ef6fbf4 + dd44cc8 commit e42d7b5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/defaults/checkOptions.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
% - ``opt.QA.func.Movie = 'on'`` ; set it to ``off`` to skip generating movies
6868
% of the time series
6969
% - ``opt.QA.func.Basics = 'on'``
70-
% - ``opt.QA.glm.do = true`` - If set to ``true`` the residual images of a
70+
% - ``opt.QA.glm.do = false`` - If set to ``true`` the residual images of a
7171
% GLM at the subject levels will be used to estimate if there is any remaining structure
7272
% in the GLM residuals (the power spectra are not flat) that could indicate
7373
% the subject level results are likely confounded (see
@@ -144,7 +144,7 @@
144144
fieldsToSet.model.hrfDerivatives = [0 0];
145145
fieldsToSet.contrastList = {};
146146

147-
fieldsToSet.QA.glm.do = true;
147+
fieldsToSet.QA.glm.do = false;
148148
fieldsToSet.QA.func.carpetPlot = true;
149149
fieldsToSet.QA.func.Motion = 'on';
150150
fieldsToSet.QA.func.FD = 'on';

tests/utils/defaultOptions.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
expectedOptions.contrastList = {};
3737

38-
expectedOptions.QA.glm.do = true;
38+
expectedOptions.QA.glm.do = false;
3939
expectedOptions.QA.func.carpetPlot = true;
4040
expectedOptions.QA.func.Motion = 'on';
4141
expectedOptions.QA.func.FD = 'on';

0 commit comments

Comments
 (0)