Skip to content

Commit 26af473

Browse files
committed
update getOptions
1 parent 1131e2f commit 26af473

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

getOption.m

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,29 @@
99
% group of subjects to analyze
1010
opt.groups = {''}; % {'blnd', 'ctrl'};
1111
% suject to run in each group
12-
opt.subjects = {1:3}; % {[1:2], [1:2]};
12+
% opt.subjects = {[4:6]}; % {[1:2], [1:2]};
13+
opt.subjects = {[]}; % {[1:2], [1:2]};
1314

1415

1516
% task to analyze
16-
opt.taskName = 'motionDecoding';
17+
opt.taskName = 'MotionDecoding';
18+
1719
% opt.taskName = 'visMotion';
1820

21+
% opt.taskName = 'balloonanalogrisktask';
22+
23+
1924

2025
% The directory where the derivatives are located
26+
2127
% opt.dataDir = '/Users/mohamed/Desktop/MotionWorkshop/raw';
2228
% opt.dataDir = '/Users/mohamed/Desktop/Data/raw';
29+
2330
% opt.dataDir = '/home/remi/BIDS/visMotion/raw';
24-
opt.dataDir = '/home/remi/BIDS/motionDecoding/raw';
31+
opt.dataDir = '/home/remi/BIDS/MotionDecoding/raw';
32+
33+
% opt.dataDir = '/home/remi/BIDS/ds001/rawdata';
34+
2535

2636
% Options for slice time correction
2737
% If left unspecified the slice timing will be done using the mid-volume acquisition
@@ -42,12 +52,19 @@
4252
opt.JOBS_dir = fullfile(opt.dataDir, '..', 'derivatives', 'SPM12_CPPL', 'JOBS', opt.taskName);
4353

4454
% specify the model file that contains the contrasts to compute
55+
4556
% opt.model.univariate.file = '/Users/mohamed/Documents/GitHub/BIDS_fMRI_scripts/model-motionDecodingUnivariate_smdl.json';
4657
% opt.model.multivariate.file = '/Users/mohamed/Documents/GitHub/BIDS_fMRI_scripts/model-motionDecodingMultivariate_smdl.json';
58+
4759
% opt.model.univariate.file = '/home/remi/github/CPP_BIDS_SPM_pipeline/model-visMotionLoc_smdl.json';
60+
4861
opt.model.univariate.file = '/home/remi/github/CPP_BIDS_SPM_pipeline/model-motionDecodingUnivariate_smdl.json';
4962
opt.model.multivariate.file = '/home/remi/github/CPP_BIDS_SPM_pipeline/model-motionDecodingMultivariate_smdl.json';
5063

64+
% opt.model.univariate.file = '/home/remi/github/CPP_BIDS_SPM_pipeline/model-balloonanalogriskUnivariate_smdl.json';
65+
% opt.model.multivariate.file = '/home/remi/github/CPP_BIDS_SPM_pipeline/model-balloonanalogriskMultivariate_smdl.json';
66+
67+
5168
% Save the opt variable as a mat file to load directly in the preprocessing
5269
% scripts
5370
save('opt.mat','opt')

0 commit comments

Comments
 (0)