-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocessingLogBook.txt
More file actions
58 lines (41 loc) · 1.31 KB
/
processingLogBook.txt
File metadata and controls
58 lines (41 loc) · 1.31 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Logbook for Longitdinal Data analysis
%
% NB: DO NOT MODIFY THIS FILE!
% Make a copy of it, adapt to your paths and rename it to "processingLogBook.m"
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Name:
%
% Starting date:
%
% ...
%% SETUP
% Make sure you modified consistently the "LongAn_Setup.m" script.
% Run it every time you open Matlab and you want to start a new analysis:
LongAn_Setup;
%% SUBJECT 01
% set the dicom IDs
subid_dcm = '';
sesid_01_dcm = '';
sesid_02_dcm = '';
sesid_03_dcm = '';
sesid_04_dcm = '';
sesid_05_dcm = {'', ''};
% set the processing IDs
subid = '';
sesid_01 = '';
sesid_02 = '';
sesid_03 = '';
sesid_04 = '';
sesid_05 = '';
% Single session processing
l1 = longan_singleSessionProcessing(subid, sesid_01, subid_dcm, sesid_01_dcm);
l2 = longan_singleSessionProcessing(subid, sesid_02, subid_dcm, sesid_02_dcm);
l3 = longan_singleSessionProcessing(subid, sesid_03, subid_dcm, sesid_03_dcm);
l4 = longan_singleSessionProcessing(subid, sesid_04, subid_dcm, sesid_04_dcm);
l5 = longan_singleSessionProcessing(subid, sesid_05, subid_dcm, sesid_05_dcm);
% Multi session processing
%l = longan_multiSessionProcessing(subid, sesid_01, sesid_02, sesid_03, sesid_04, sesid_05);