Skip to content

Commit 330dd1b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e0cbfaf commit 330dd1b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/defaults/checkOptions.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@
141141
if ~iscell(opt.space)
142142
opt.space = {opt.space};
143143
end
144-
144+
145145
if ismember('MNI', opt.space)
146146
idx = strcmp(opt.space, 'MNI');
147147
opt.space{idx} = 'IXI549Space';
148148
msg = sprintf('Converting reference to MNI space tp SPM IXI549Space');
149149
id = 'mniToIXI549Space';
150-
errorHandling(mfilename(), id, msg, true, opt.verbosity)
150+
errorHandling(mfilename(), id, msg, true, opt.verbosity);
151151
end
152152

153153
opt = orderfields(opt);

src/workflows/stats/bidsRFX.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ function bidsRFX(action, opt)
2828
checks(opt, action);
2929

3030
if ismember('MNI', opt.query.space)
31-
idx = strcmp(opt.query.space, 'MNI');
32-
opt.query.space{idx} = 'IXI549Space';
31+
idx = strcmp(opt.query.space, 'MNI');
32+
opt.query.space{idx} = 'IXI549Space';
3333
end
3434

3535
[~, opt] = setUpWorkflow(opt, 'group level GLM');

0 commit comments

Comments
 (0)