-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtbx_cfg_TopUpDocker.m
36 lines (29 loc) · 1.45 KB
/
tbx_cfg_TopUpDocker.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
function TUdocker = tbx_cfg_TopUpDocker
% Configuration file for the "TopUp Docker" toolbox
%__________________________________________________________________________
% Copyright (C) 2021 Cyclotron Research Centre
% Written by C. Phillips, 2021.
% GIGA Institute, University of Liege, Belgium
% Checking path
if ~isdeployed, addpath(fullfile(spm('dir'),'toolbox','TopUpDocker')); end
% The toolbox is currently split into 3 separate modules
% - TopUp wrapper for fMRI -> tbx_scfg_TUdock_wrapfmri
% - TopUp estimate -> tbx_scfg_TUdock_estim
% - TopUp apply -> tbx_scfg_TUdock_apply
% ---------------------------------------------------------------------
% TUdocker TopUp Docker Tools
% ---------------------------------------------------------------------
TUdocker = cfg_choice;
TUdocker.tag = 'TUdocker';
TUdocker.name = 'TopUp Docker Tools';
TUdocker.help = {
'This toolbox is about the TopUp method to correct fMRI and DWI data.'
['It includes 3 modules at the moment to: "TopUp estimate" to ', ...
'estimate the correction in one subset of fMRI/DWI set of images, ', ...
'TopUp apply to apply the estimated correction on the full set of ', ...
'fMRI/DWI images, the "TopUp fMRI wrapper" for the full processing ', ...
'of (possibly multiple sessions) fMRI data with TU-estimate, ',...
'realignment, and TU-application.']
}';
TUdocker.values = {tbx_scfg_TUdock_wrapfmri tbx_scfg_TUdock_estim tbx_scfg_TUdock_apply };
end