-
Notifications
You must be signed in to change notification settings - Fork 246
/
Copy pathpop_jointprob.m
286 lines (264 loc) · 12.2 KB
/
pop_jointprob.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
% POP_JOINTPROB - reject artifacts in an EEG dataset using joint
% probability of the recorded electrode or component
% activities observed at each time point. e.g., Observing
% large absolute values at most electrodes or components
% is improbable and may well mark the presence of artifact.
% Usage:
% >> pop_jointprob( INEEG, typerej) % pop-up interactive window mode
% >> [OUTEEG, locthresh, globthresh, nrej] = ...
% = pop_jointprob( INEEG, typerej, elec_comp, ...
% locthresh, globthresh, superpose, reject, vistype);
%
% Graphic interface:
% "Electrode|Component" - [edit box] electrodes or components indices to take
% into consideration for rejection. Same as the 'elec_comp'
% parameter in the command line call (see below).
% "Single-channel limit|Single-component limit" - [edit box] activity
% probability limit(s) (in std. dev.) Sets the 'locthresh'
% command line parameter. If more than one, defined individual
% electrode|channel limits. If fewer values than the number
% of electrodes|components specified above, the last input
% value is used for all remaining electrodes|components.
% "All-channel limit|All-component limit" - [edit box] activity probability
% limit(s) (in std. dev.) for all channels (grouped).
% Sets the 'globthresh' command line parameter.
% "visualization type" - [popup menu] can be either 'REJECTRIALS'|'EEGPLOT'.
% This correspond to the command line input option 'vistype'
% "Display with previous rejection(s)" - [checkbox] This checkbox set the
% command line input option 'superpose'.
% "Reject marked trial(s)" - [checkbox] This checkbox set the command
% line input option 'reject'.
% Inputs:
% INEEG - input dataset
% typerej - [1|0] data to reject on (0 = component activations;
% 1 = electrode data). {Default: 1 = electrode data}.
% elec_comp - [n1 n2 ...] electrode|component number(s) to take into
% consideration for rejection
% locthresh - activity probability limit(s) (in std. dev.) See "Single-
% channel limit(s)" above.
% globthresh - global limit(s) (all activities grouped) (in std. dev.)
% superpose - [0|1] 0 = Do not superpose rejection marks on previously
% marks stored in the dataset: 1 = Show both current and
% previous marks using different colors. {Default: 0}.
% reject - 0 = do not reject marked trials (but store the marks:
% 1 = reject marked trials {Default: 1}.
% vistype - Visualization type. [0] calls REJSTATEPOCH and [1] calls
% EEGPLOT default is [0].When added to the command line
% call it will not display the plots if the option 'plotflag'
% is not set.
% topcommand - [] Deprecated argument , keep to ensure backward compatibility
% plotflag - [1,0] [1]Turns plots 'on' from command line, [0] off.
% (Note for developers: When called from command line
% it will make 'calldisp = plotflag') {Default: 0}
%
% Outputs:
% OUTEEG - output dataset with updated joint probability array
% locthresh - electrodes probability of activity thresholds in terms
% of standard-dev.
% globthresh - global threshold (where all electrode activity are
% regrouped).
% nrej - number of rejected sweeps
%
% Author: Arnaud Delorme, CNL / Salk Institute, 2001
%
% See also: JOINTPROB, REJSTATEPOCH, EEGPLOT, EEGLAB, POP_REJEPOCH
% Copyright (C) 2001 Arnaud Delorme, Salk Institute, arno@salk.edu
%
% This file is part of EEGLAB, see http://www.eeglab.org
% for the documentation and details.
%
% Redistribution and use in source and binary forms, with or without
% modification, are permitted provided that the following conditions are met:
%
% 1. Redistributions of source code must retain the above copyright notice,
% this list of conditions and the following disclaimer.
%
% 2. Redistributions in binary form must reproduce the above copyright notice,
% this list of conditions and the following disclaimer in the documentation
% and/or other materials provided with the distribution.
%
% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
% AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
% IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
% ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
% LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
% CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
% SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
% INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
% CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
% ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
% THE POSSIBILITY OF SUCH DAMAGE.
% 01-25-02 reformated help & license -ad
% 03-07-02 added srate argument to eegplot call -ad
% 03-08-02 add eeglab options -ad
function [EEG, locthresh, globthresh, nrej, com] = pop_jointprob( EEG, icacomp, elecrange, ...
locthresh, globthresh, superpose, reject, vistype, topcommand,plotflag);
nrej = []; com = '';
if nargin < 1
help pop_jointprob;
return;
end
if nargin < 2
icacomp = 1;
end
if icacomp == 0
if isempty( EEG.icasphere )
ButtonName=questdlg( 'Do you want to run ICA now ?', ...
'Confirmation', 'NO', 'YES', 'YES');
switch ButtonName
case 'NO', disp('Operation cancelled'); return;
case 'YES', [ EEG com ] = pop_runica(EEG);
end % switch
end
end
if exist('reject') ~= 1
reject = 1;
end
if nargin < 3
% which set to save
% -----------------
promptstr = { [ fastif(icacomp, 'Electrode', 'Component') ' (indices; Ex: 2 6:8 10):' ], ...
[ fastif(icacomp, 'Single-channel', 'Single-component') ' limit(s) (std. dev(s).: Ex: 2 2 2.5):'], ...
[ fastif(icacomp, 'All-channel', 'All-component') ' limit(s) (std. dev(s).: Ex: 2 2.1 2):'], ...
'Visualization type',...
'Display previous rejection marks', ...
'Reject marked trial(s)'};
inistr = { fastif(icacomp, ['1:' int2str(EEG.nbchan)], ['1:' int2str(size(EEG.icaweights,1))])...
fastif(icacomp, '3', '5'), ...
fastif(icacomp, '3', '5'), ...
'',...
'1', ...
'0'};
vismodelist= {'REJECTTRIALS','EEGPLOT'};
g1 = [1 0.1 0.75];
g2 = [1 0.26 0.9];
g3 = [1 0.22 0.85];
geometry = {g1 g1 g1 g2 [1] g3 g3};
uilist = {...
{ 'Style', 'text', 'string', promptstr{1}} {} { 'Style','edit' , 'string' ,inistr{1} 'tag' 'cpnum'}...
{ 'Style', 'text', 'string', promptstr{2}} {} { 'Style','edit' , 'string' ,inistr{2} 'tag' 'singlelimit'}...
{ 'Style', 'text', 'string', promptstr{3}} {} { 'Style','edit' , 'string' ,inistr{3} 'tag' 'alllimit'}...
{ 'Style', 'text', 'string', promptstr{4}} {} { 'Style','popupmenu' , 'string' , vismodelist 'tag' 'specmethod' 'value' 2 }...
{}...
{ 'Style', 'text', 'string', promptstr{5}} {} { 'Style','checkbox' ,'string' , ' ' 'value' str2double(inistr{5}) 'tag','rejmarks' }...
{ 'Style', 'text', 'string', promptstr{6}} {} { 'Style','checkbox' ,'string' ,' ' 'value' str2double(inistr{6}) 'tag' 'rejtrials'} ...
};
figname = fastif( ~icacomp, 'Reject. improbable comp. -- pop_jointprob()', 'Reject improbable data -- pop_jointprob()');
result = inputgui( geometry,uilist,'pophelp(''pop_jointprob'');', figname);
size_result = size( result );
if size_result(1) == 0, locthresh = []; globthresh = []; return; end
elecrange = result{1};
locthresh = result{2};
globthresh = result{3};
switch result{4}, case 1, vistype=0; otherwise, vistype=1; end
superpose = result{5};
reject = result{6};
end
if ~exist('vistype' ,'var'), vistype = 0; end
if ~exist('reject' ,'var'), reject = 0; end
if ~exist('superpose','var'), superpose = 1; end
if ischar(elecrange) % convert arguments if they are in text format
calldisp = 1;
elecrange = eval( [ '[' elecrange ']' ] );
locthresh = eval( [ '[' locthresh ']' ] );
globthresh = eval( [ '[' globthresh ']' ] );
else
calldisp = 0;
end
if exist('plotflag','var') && ismember(plotflag,[1,0])
calldisp = plotflag;
else
plotflag = 0;
end
if isempty(elecrange)
error('No electrode selectionned');
end;
% compute the joint probability
% -----------------------------
if icacomp == 1
fprintf('Computing joint probability for channels...\n');
tmpdata = eeg_getdatact(EEG);
if isempty(EEG.stats.jpE)
[ EEG.stats.jpE, rejE ] = jointprob( tmpdata, locthresh, EEG.stats.jpE, 1);
end
[ tmp, rejEtmp ] = jointprob( tmpdata(elecrange,:,:), locthresh, EEG.stats.jpE(elecrange,:), 1);
rejE = zeros(EEG.nbchan, size(rejEtmp,2));
rejE(elecrange,:) = rejEtmp;
fprintf('Computing all-channel probability...\n');
tmpdata2 = permute(tmpdata, [3 1 2]);
tmpdata2 = reshape(tmpdata2, size(tmpdata2,1), size(tmpdata2,2)*size(tmpdata2,3));
[ EEG.stats.jp, rej ] = jointprob( tmpdata2, globthresh, EEG.stats.jp, 1);
clear tmpdata2;
else
tmpdata = eeg_getica(EEG);
fprintf('Computing joint probability for components...\n');
if isempty(EEG.stats.icajpE)
[ EEG.stats.icajpE, rejE ] = jointprob( tmpdata, locthresh, EEG.stats.icajpE, 1);
end
[ tmp, rejEtmp ] = jointprob( tmpdata(elecrange,:), locthresh, EEG.stats.icajpE(elecrange,:), 1);
rejE = zeros(size(tmpdata,1), size(rejEtmp,2));
rejE(elecrange,:) = rejEtmp;
fprintf('Computing global joint probability...\n');
tmpdata2 = permute(tmpdata, [3 1 2]);
tmpdata2 = reshape(tmpdata2, size(tmpdata2,1), size(tmpdata2,2)*size(tmpdata2,3));
[ EEG.stats.icajp, rej] = jointprob( tmpdata2, globthresh, EEG.stats.icajp, 1);
clear tmpdata2;
end
rej = rej' | max(rejE, [], 1);
fprintf('%d/%d trials marked for rejection\n', sum(rej), EEG.trials);
if calldisp
if vistype == 1
if icacomp == 1
macrorej = 'EEG.reject.rejjp';
macrorejE = 'EEG.reject.rejjpE';
else
macrorej = 'EEG.reject.icarejjp';
macrorejE = 'EEG.reject.icarejjpE';
end
colrej = EEG.reject.rejjpcol;
eeg_rejmacro; % script macro for generating command and old rejection arrays
if icacomp == 1
eegplot( tmpdata(elecrange,:,:), 'srate', ...
EEG.srate, 'limits', [EEG.xmin EEG.xmax]*1000 , 'command', command, eegplotoptions{:});
else
eegplot( tmpdata(elecrange,:,:), 'srate', ...
EEG.srate, 'limits', [EEG.xmin EEG.xmax]*1000 , 'command', command, eegplotoptions{:});
end
else % REJECTRIALS -------------------------
if icacomp == 1
[ rej, rejE, n, locthresh, globthresh] = ...
rejstatepoch( tmpdata(elecrange,:,:), EEG.stats.jpE(elecrange,:), 'global', 'on', 'rejglob', EEG.stats.jp, ...
'threshold', locthresh, 'thresholdg', globthresh, 'normalize', 'off' );
else
[ rej, rejE, n, locthresh, globthresh] = ...
rejstatepoch( tmpdata(elecrange,:,:), EEG.stats.icajpE(elecrange,:), 'global', 'on', 'rejglob', EEG.stats.icajp, ...
'threshold', locthresh, 'thresholdg', globthresh, 'normalize', 'off' );
end
nrej = n;
end
else
% compute rejection locally
rejtmp = max(rejE(elecrange,:),[],1);
rej = rejtmp | rej;
nrej = sum(rej);
fprintf('%d trials marked for rejection\n', nrej);
if reject
EEG = pop_rejepoch(EEG, rej, 0);
end
end
if ~isempty(rej)
if icacomp == 1
EEG.reject.rejjp = rej;
EEG.reject.rejjpE = rejE;
else
EEG.reject.icarejjp = rej;
EEG.reject.icarejjpE = rejE;
end
end
nrej = sum(rej);
com = [ com sprintf('EEG = pop_jointprob(EEG,%s);', ...
vararg2str({icacomp,elecrange,locthresh,globthresh,superpose,reject & ~calldisp, vistype, [],plotflag})) ];
if nargin < 3 && nargout == 2
locthresh = com;
end
return;