ImaGIN_TimeZero.m
1.87 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
function D = ImaGIN_TimeZero(S)
% -=============================================================================
% 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: Olivier David
try
Filename = S.Fname;
catch
Filename = spm_select(1, '\.mat$', 'Select data file');
end
if isempty(Filename)
D = [];
return;
end
D = spm_eeg_load(Filename);
Events = events(D);
if iscell(Events)
Events = Events{:};
end
TimeOnset = timeonset(D);
try
EventRef = S.EventRef;
catch
EventRef = spm_input('Name of reference event ', 1, 's');
end
n=0;
for i1=1:length(Events)
if strcmp(Events(i1).type,EventRef)
n = n+1;
Eventref(n) = Events(i1).time;
end
end
try
EventRef = min(Eventref);
catch
EventRef = 0;
end
try
Offset = S.Offset;
catch
Offset = spm_input('Duration [sec] before reference', '+1', 'r',0);
end
D = timeonset(D,-(EventRef-Offset)+TimeOnset);
for i0=1:length(Events)
Events(i0).time = Events(i0).time-(EventRef-Offset);
end
if isfield(D,'spike')
for i1 = 1:length(D.spike.timings)
D.spike.timings{i1} = D.spike.timings{i1}-(EventRef-Offset);
end
end
% This assigns these events to the first trials (the only one if you have continuous data)
D = events(D, 1, Events);
save(D);
% Add log entry
ImaGIN_save_log(fullfile(D), sprintf('TimeZero: Time offset %fs', -(EventRef-Offset)));