Skip to content

Commit

Permalink
Change output dir path to within the experiment folder
Browse files Browse the repository at this point in the history
  • Loading branch information
marcobarilari committed Dec 16, 2022
1 parent 43b498e commit b857284
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions setParameters.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
% Initialize the parameters and general configuration variables
cfg = struct();

% by default the data will be stored in an output folder created where the
% setParamters.m file is
% change that if you want the data to be saved somewhere else
% By default the data will be stored in an output folder created one folder up where the
% setParamters.m file is. with CPP_BIDS 2.3.0 this will change.
% Change that if you want the data to be saved somewhere else,
% below will set it to save the output within the sxperiment folder
cfg.dir.output = fullfile( ...
fileparts(mfilename('fullpath')), '..', ...
fileparts(mfilename('fullpath')), ...
'output');

%% Debug mode settings
Expand Down

0 comments on commit b857284

Please sign in to comment.