-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtbx_scfg_mriq_epi.m
30 lines (27 loc) · 1.29 KB
/
tbx_scfg_mriq_epi.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
function epi = tbx_scfg_mriq_epi
% (Sub)configuration file for the MRIquality toolbox, partim EPI data.
%
% Warning and disclaimer: This software is for research use only.
% Do not use it for clinical or diagnostic purposes.
%
%==========================================================================
% Written by Evelyne Balteau, Cyclotron Research Centre, June 2017
%==========================================================================
% The following subsections are available:
% - tbx_scfg_mriq_epi_qa: quality assurance of EPI data, i.e. analysis of
% EPI series acquired (mainly) on phantom, checking for SNR and stability
% parameters to detect early any deviation from good quality.
% - tbx_scfg_mriq_epi_qc: quality control of EPI data, including spike and
% outlier detection, sequential check to control for motion, ...
% ---------------------------------------------------------------------
% hmri hMRI Tools
% ---------------------------------------------------------------------
epi = cfg_choice;
epi.tag = 'epi';
epi.name = 'EPI Tools';
epi.help = {
['Collection of tools for quality assurance and quality control ', ...
'of EPI data (including fMRI and DWI).']
}';
epi.values = {tbx_scfg_mriq_epi_qa tbx_scfg_mriq_epi_qc tbx_scfg_mriq_epi_qareport};
end