-
Notifications
You must be signed in to change notification settings - Fork 0
/
iCLSM_defaults.m
52 lines (37 loc) · 1.58 KB
/
iCLSM_defaults.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
function iCLSM_defaults
global CLSM
% Global Setting
CLSM.dir = fileparts(which('iCLSM'));
CLSM.colorblue = [0, 114, 189]/255.;
%--------------------------------------------------------------------------
% Parameters to change file name
%--------------------------------------------------------------------------
CLSM.fn_lesionlist = 'lesion_list.xlsx';
CLSM.fn_normallist = 'normal_list.xlsx';
%--------------------------------------------------------------------------
% Parameters for temporal preprocessing of normal database
%--------------------------------------------------------------------------
CLSM.prep.TR = 2; % TR time: volume acquisition time
CLSM.prep.BW = [0.009 0.1]; % frequency range for bandpass filter
CLSM.prep.dummyoff = 5;
CLSM.prep.fmridir = 'rest';
CLSM.prep.prefix = 'swar';
CLSM.prep.nHM = 12; % 6 head motion and its time derivatives
CLSM.prep.CSF = 1; % csf signal
CLSM.prep.WM = 1; % white matter signal
CLSM.prep.GS = 1; % global signal
% Don't use following option
CLSM.prep.PCA = 0;
CLSM.prep.nPCA= 0; % Suggested by X.J. Chai et al. / NeuroImage 59 (2012) 1420?1428
%--------------------------------------------------------------------------
% Parameters for lesion network mapping
%--------------------------------------------------------------------------
CLSM.anal.mode = 'Preprocess';
CLSM.anal.uncorr_p = 0.00005; % p-value (R.R. Darby et al. Brain 2017)
CLSM.anal.lesiondir = 'lesion';
CLSM.anal.OUTpath = '';
% Do not change following option
CLSM.anal.FDthr = 0.2;
CLSM.anal.doScrubbing = 0;
CLSM.anal.BW = [0.009 0.08];
CLSM.anal.TR = 2;