-
Notifications
You must be signed in to change notification settings - Fork 0
/
uhfbold_get_paths.m
45 lines (39 loc) · 1.69 KB
/
uhfbold_get_paths.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
function paths = uhfbold_get_paths(idSubject)
% Define all paths for code related to UHF Neuro BOLD Acq/Phys book chapter
%
% paths = uhfbold_get_paths()
%
% IN
%
% OUT
% paths structured variable, includeds project/data/results/code paths
% EXAMPLE
% uhfbold_get_paths
%
% See also
% Author: Lars Kasper
% Created: 2022-01-10
% Copyright (C) 2022 BRAIN-TO Lab, Techna Institute, UHN Toronto, Canada
%
% Please see LICENSE file for how to use items in this repository.
%
if nargin < 1
idSubject = 'UHFBOLD'; 'SYNAPTIVE'; %'UHFBOLD'
end
paths.project = 'C:\Users\kasperla\UHN\Brain-TO - BookChapterUltraHighFieldNeuroMRI - BookChapterUltraHighFieldNeuroMRI';
paths.data = fullfile(paths.project, 'data');
paths.results = fullfile(paths.project, 'results');
paths.figures = fullfile(paths.results, 'figures', idSubject);
paths.code.root = fullfile(paths.project, 'code');
paths.code.analysis = fullfile(paths.code.root, 'book-chapter-uhf-neuro-mri');
paths.code.utils = 'C:\Users\kasperla\Documents\Code\BRAIN-To\matlab-utils';
paths.code.spm = 'C:\Users\kasperla\Documents\Code\spm12';
paths.code.uniqc = 'C:\Users\kasperla\Documents\Code\uniqc-code';
paths.code.export_fig = 'C:\Users\kasperla\Documents\Code\BRAIN-To\export_fig';
% NOTE: Contact Lars Kasper if you are interested to get the following code
% folders
paths.code.traj_generation = 'C:\Users\kasperla\Documents\Code\Recon7\trunk\utils\nominalTrajectory';
paths.code.traj_utils = 'C:\Users\kasperla\Documents\Code\Recon7\trunk\utils\nominalTrajectory\utils';
paths.export = fullfile(paths.data, idSubject);
% put all gradient files in single folder for easier access
paths.export_single_folder = fullfile(paths.export, 'exportGradientsSiemens');