ImaGIN_BadChannelSet.m
1.76 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
59
60
61
62
63
function D = ImaGIN_BadChannelSet(S)
% Set the list of bad channels for a SPM .mat/.dat file.
% -=============================================================================
% This function is part of the ImaGIN software:
% https://f-tract.eu/
%
% This software is distributed under the terms of the GNU General Public License
% as published by the Free Software Foundation. Further details on the GPLv3
% license can be found at http://www.gnu.org/copyleft/gpl.html.
%
% FOR RESEARCH PURPOSES ONLY. THE SOFTWARE IS PROVIDED "AS IS," AND THE AUTHORS
% DO NOT ASSUME ANY LIABILITY OR RESPONSIBILITY FOR ITS USE IN ANY CONTEXT.
%
% Copyright (c) 2000-2018 Inserm U1216
% =============================================================================-
%
% Authors: Francois Tadel, 2017
%% ===== GET INPUTS =====
% Nothing in input
if (nargin < 1) || isempty(S)
S = struct();
end
% Get filename
if isfield(S, 'Fname') && ~isempty(S.Fname)
Filename = S.Fname;
else
Filename = spm_select(1, '\.mat$', 'Select data file');
end
if isempty(Filename)
D = [];
return;
end
% Get bad channels
if isfield(S, 'BadChannels') && ~isempty(S.BadChannels)
BadChannels = S.BadChannels;
else
BadChannels = spm_input('Bad channels (names or indices)', '+1', 's');
end
%% ===== UPDATE FILE =====
% Load input file
D = spm_eeg_load(Filename);
% Get channel indices
ChanLabels = chanlabels(D);
iBadChan = ImaGIN_find_channels(ChanLabels, BadChannels);
% No bad channels: nothing else to do
if isempty(iBadChan)
disp(['ImaGIN> Warning: No channel found for input "' BadChannels '"']);
return;
end
% Set bad channels
D = badchannels(D, iBadChan, 1);
% Update file
save(D);
% Add the list of bad channels to the logs
ImaGIN_save_log(fullfile(D), 'Bad channels: ', ChanLabels(iBadChan));