-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpathSetup.txt
More file actions
44 lines (35 loc) · 1.56 KB
/
pathSetup.txt
File metadata and controls
44 lines (35 loc) · 1.56 KB
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
function pathSetup()
%
% Initialization for Longitudinal Analysis MRI
%
% NB: DO NOT MODIFY THIS FILE!
% Make a copy of it, adapt to your paths and rename it to "LongAn_Setup.m"
%
global FSLDIR
global DTITK
global FREESURFER_HOME SUBJECTS_DIR
global DICOM2NIIX DICOM2BIDS
global NODDI
global MINPAT
global PROCESSDIR DICOMDIR RAWDIR POPANDIR SUBANDIR
%% Path definition: adapt these to your needs
% ==========================================
% sofrware paths
FSLDIR = ''; % MODIFY !! full path to FSL directory
DTITK = ''; % MODIFY !! full path to DTI-TK directory
FREESURFER_HOME = ''; % MODIFY !! full path to freeSurfer directory
DICOM2NIIX = ''; % MODIFY !! full path to dcm2niix directory
DICOM2BIDS = ''; % MODIFY !! full path to dcm2bids directory
NODDI = ''; % MODIFY !! full path to NODDI toolbox directory
MINPAT = ''; % MODIFY !! full path to LongAn directory
% Data paths
PROCESSDIR = ''; % MODIFY !! full path to processing directory
DICOMDIR = ''; % MODIFY !! full path to DICOM data directory
RAWDIR = ''; % MODIFY !! full path to where NIfTI raw data will be stored
POPANDIR = ''; % MODIFY !! full path for popluation level analysis output
SUBANDIR = ''; % MODIFY !! full path for subject and session level analysis output
% don't modify this unless you know what you are doing
SUBJECTS_DIR = fullfile(SUBANDIR, 'fs_processing');
%% Set environment variable
% ==========================================
pathConfig();