-
Notifications
You must be signed in to change notification settings - Fork 27
/
limo_best_electrodes.m
174 lines (152 loc) · 5.89 KB
/
limo_best_electrodes.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
function [channel_vector,urchan_vector,freqmap] = limo_best_electrodes(varargin)
% This function finds the channel with the maximum value in each subject map.
% The function works on files R2.mat, Condition_effect.mat, Continuous.mat.
% (also takes LIMO.mat and maps R2).
% The function also returns a map of frequency showing how often an electrode is
% selected across subjects, if no output or nargout == 3.
%
% FORMAT limo_best_electrodes
% [channel_vector,urchan_vector] = limo_best_electrodes(NameOfListOfFiles,expected_chanlocs)
%
% INPUT if empty user is prompted overwise the name of a file listing LIMO/R2/etc.. files
% when a channel location file if also provided, allows making a frequency map
%
% OUTPUTS channel_vector the indices of which electrodes had the strongest F values
% urchan_vector the value read from the urchan field (if present)
% a frequency map (if requested will also pop a figure)
%
% ------------------------------
% Copyright (C) LIMO Team 2021
% Cyril Pernet & Guillaume Rousselet
%% file selection
current_dir = pwd;
channel_vector = [];
urchan_vector = [];
freqmap = [];
if nargin == 0
[name,pathname,FilterIndex]=uigetfile({'*.mat','MAT-files (*.mat)'; '*.txt','Text (*.txt)'}, ...
'Pick a list of result files (e.g. R2)');
else
if ischar(varargin{1})
[pathname,name,ext]=fileparts(varargin{1}); name = [name ext];
if exist(fullfile(pathname,name),'file')
FilterIndex = 1;
else
warning('file %s not found',name);
return
end
else % cell array of names
FilterIndex = 0;
name = varargin{1};
end
end
if FilterIndex ~= 0
if strcmp(name(end-3:end),'.txt')
name = importdata(fullfile(pathname,name));
elseif strcmp(name(end-3:end),'.mat')
name = load(fullfile(pathname,name));
name = name.(cell2mat(fieldnames(name)));
end
for f=1:size(name,1)
if ~exist(name{f},'file')
errordlg(sprintf('%s \n file not found',name{f}));
return
end
end
else
if ~iscell(name)
disp('selection aborded')
return
end
end
%% now collect data
Ns = size(name,1);
channel_vector = NaN(Ns,1);
urchan_vector = NaN(Ns,1);
for i=Ns:-1:1
tmp = load(name{i});
if isfield(tmp,'LIMO')
tmp = load(fullfile(tmp.LIMO.dir,'R2.mat'));
end
tmp = tmp.(cell2mat(fieldnames(tmp)));
try % read F values
if numel(size(tmp)) == 4
data{i} = squeeze(tmp(:,:,:,end-1)); % end-1 because R2 dim is R2,F,p
% and condition/covariates dim are F/p
data_size{i} = size(data{i});
index = find(data{i} == max(data{i}(:)));
[channel_vector(i),~,~] = ind2sub(data_size{i},index(1));
else
data{i} = squeeze(tmp(:,:,end-1));
data_size{i} = size(data{i});
index = find(data{i} == max(data{i}(:)));
[channel_vector(i),~] = ind2sub(data_size{i},index(1));
end
LIMO = load([fileparts(name{i}) filesep 'LIMO.mat']); LIMO = LIMO.LIMO;
if ~isempty(LIMO.data.chanlocs(channel_vector(i)).urchan)
urchan_vector(i) = LIMO.data.chanlocs(channel_vector(i)).urchan;
end
fprintf('subject %g analysed \n',i);
catch bug
error('file error with subject %s\n%s',name{i},bug.message);
end
end
% usually no output just write it down on the disk for latter use
if nargout == 0
cd(current_dir)
name = cell2mat(inputdlg('Save electrode vector as','Name'));
if ~isempty(name)
save (name,'channel_vector')
assignin('base',name,channel_vector)
save ([name '_urchan'],'urchan_vector')
assignin('base',[name '_urchan'],urchan_vector)
end
end
%% do the map
clear data
if sum(isnan(channel_vector)) == 0 && nargin ==0 || ...
sum(isnan(channel_vector)) == 0 && nargin ==2
if nargin <= 1
[p,f,filt]=uigetfile('*.mat','load expected chanlocs to check channel positions');
if filt == 0
return
else
expected_chanlocs = load([f filesep p]);
end
elseif nargin > 1
expected_chanlocs = varargin{2};
if ischar(expected_chanlocs)
expected_chanlocs = load(expected_chanlocs);
end
end
if exist('expected_chanlocs','var')
structnames = fieldnames(expected_chanlocs);
if ~isempty(structnames)
expected_chanlocs = expected_chanlocs.(cell2mat(structnames(structfun(@isstruct,expected_chanlocs))));
end
data = zeros(1,length(expected_chanlocs));
for S=1:Ns
data(channel_vector(S)) = data(channel_vector(S))+1;
end
% create the frequency map
[h grid_or_val plotrad_or_grid, xmesh, ymesh]= ...
topoplot(data,expected_chanlocs,'style','both','electrodes','off','hcolor','none','numcontour',0,'whitebk','on','noplot','on','conv','on');
freqmap = grid_or_val(end:-1:1,:); % reverse row order to get back of the head at the bottom of the image
freqmap(34,67)=NaN;freqmap(67,34)=NaN;freqmap(34,1)=NaN;freqmap(1,34)=NaN;
if min(freqmap(:))<0
freqmap = freqmap + abs(min(freqmap(:)));
end
end
% make the figure
if nargout == 3 && exist('freqmap','var') || ...
nargout == 0 && exist('freqmap','var')
figure('Color','w','NumberTitle','off','Name','limo_best_electrodes.m')
% imagesc(freqmap,[0 max(freqmap(:))])
% axis tight;axis square;axis off
% colormap(limo_color_images(freqmap));
opt = {'electrodes','on','maplimits','maxmin','verbose','off','colormap', limo_color_images(freqmap)};
topoplot(data,expected_chanlocs,opt{:});
title('best channels frequency map')
cd(current_dir)
end
end