-
Notifications
You must be signed in to change notification settings - Fork 17
/
bids_writechanfile.m
72 lines (69 loc) · 2.21 KB
/
bids_writechanfile.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
% eeg_writechanfile - write channels.tsv from single EEG dataset. The
% function also outputs channels count
%
% Usage:
% channelsCount = eeg_writechanfile(EEG, fileOut)
%
%
%
% Inputs:
% 'EEG' - [struct] the EEG structure
%
% 'fileOut' - [string] filepath of the desired output location with file basename
% e.g. ~/BIDS_EXPORT/sub-01/ses-01/eeg/sub-01_ses-01_task-GoNogo
%
% Outputs:
%
% channelsCount - [struct] count of different types of channels
%
% Authors: Dung Truong, Arnaud Delorme, 2022
function bids_writechanfile(EEG, fileOut)
fid = fopen( [ fileOut '_channels.tsv' ], 'w');
if isempty(EEG.chanlocs)
if contains(fileOut, 'ieeg')
fprintf(fid, 'name\ttype\tunits\tlow_cutoff\thigh_cutoff\n');
for iChan = 1:EEG.nbchan
fprintf(fid, 'E%d\tiEEG\tmicroV\tn/a\tn/a\n', iChan);
end
else
fprintf(fid, 'name\ttype\tunits\n');
for iChan = 1:EEG.nbchan
fprintf(fid, 'E%d\tEEG\tmicroV\n', iChan);
end
end
channelsCount = struct([]);
else
if contains(fileOut, 'ieeg')
fprintf(fid, 'name\ttype\tunits\tlow_cutoff\thigh_cutoff\n');
else
fprintf(fid, 'name\ttype\tunits\n');
end
acceptedChannelTypes = { 'AUDIO' 'EEG' 'EOG' 'ECG' 'EMG' 'EYEGAZE' 'GSR' 'HEOG' 'MISC' 'PUPIL' 'REF' 'RESP' 'SYSCLOCK' 'TEMP' 'TRIG' 'VEOG' };
for iChan = 1:EEG.nbchan
% Type
if ~isfield(EEG.chanlocs, 'type') || isempty(EEG.chanlocs(iChan).type)
type = 'n/a';
elseif ismember(upper(EEG.chanlocs(iChan).type), acceptedChannelTypes)
type = upper(EEG.chanlocs(iChan).type);
else
type = 'MISC';
end
% Unit
if isfield(EEG.chanlocs(iChan), 'unit')
unit = EEG.chanlocs(iChan).unit;
else
if strcmpi(type, 'eeg')
unit = 'uV';
else
unit = 'n/a';
end
end
%Write
if contains(fileOut, 'ieeg')
fprintf(fid, '%s\t%s\t%s\tn/a\tn/a\n', EEG.chanlocs(iChan).labels, type, unit);
else
fprintf(fid, '%s\t%s\t%s\n', EEG.chanlocs(iChan).labels, type, unit);
end
end
end
fclose(fid);