Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions bidspm.m
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,15 @@ function preprocess(args)
bidsSpatialPrepro(opt);
if opt.fwhm.func > 0 && ~opt.anatOnly
opt.query.desc = 'preproc';
if opt.dryRun
msg = ['"dryRun" set to "true", so smoothing will be skipped', ...
' as it requires the output of spatial preprocessing to run.'];
logger('WARNING', msg, ...
'options', opt, ...
'filename', mfilename(), ...
'id', 'skipSmoothingInDryRun');
return
end
bidsSmoothing(opt);
end

Expand Down