forked from open-ephys/analysis-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoadTT_openephys.m
87 lines (82 loc) · 3.46 KB
/
LoadTT_openephys.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
function [t, wv] = LoadTT_openephys(fn,records_to_get,record_units)
%LOADTT_OPENEPHYS MClust loading engine for open ephys data.
% LOADTT_OPENEPHYS loads open ephys data and fullfils all requirement for
% MClust loading engines (see MClust 3.5 documentation for details on
% MClust loading engines).
%
% Syntax:
% [T, WV] = LOADTT_OPENEPHYS(FN,RECORDS_TO_GET,RECORD_UNITS)
%
% Input arguments:
% FN - file name with full path for openephys data to load
% RECORDS_TO_GET, RECORD_UNITS - allows options for returning a
% restricted data set; if not passed, the full data file is
% returned;
% RECORD_UNITS = 1 - return specific time stamps, given by
% RECORDS_TO_GET
% RECORD_UNITS = 2 - return data points at specific indices,
% given by RECORDS_TO_GET
% RECORD_UNITS = 3 - return data in a time stamp range, given by
% RECORDS_TO_GET (2-elements vector)
% RECORD_UNITS = 4 - return data in an index range, given by
% RECORDS_TO_GET (2-elements vector)
% RECORD_UNITS = 5 - return number of spikes as first output
% argument; RECORDS_TO_GET should be empty
%
% Output arguments:
% T - time stamps in seconds; 1 x N, N = number of spikes (exeption:
% RECORD_UNITS = 5, see above)
% WV - waveforms; N X 4 X 30, N = number of spikes, 4 tetrode
% channels, 30 time points for spikes
%
% See also LOAD_OPEN_EPHYS_DATA.
% Balazs Hangya, Cold Spring Harbor Laboratory
% 1 Bungtown Road, Cold Spring Harbor
% 10-June-2014
% Input argument check
error(nargchk(1,3,nargin))
switch nargin
case 1
record_units = 0;
case 2
error('LoadTT_openephys:inputArg','Record_units argument should be provided.')
end
% Load data
[wv t] = load_open_ephys_data(fn); % t: timestamps; wv: waveform data
wv = permute(wv,[1 3 2]); % dimensions: spikes, channels, time
% Restrict data to the required range
switch record_units
case 0 % return full data
case 1 % return specific time stamps
[jnk inxa] = intersect(t,records_to_get); %#ok<*ASGLU> % indices for the time stamps
t = t(inxa);
wv = wv(inxa,:,:);
case 2 % return specific data indices
t = t(records_to_get);
wv = wv(records_to_get,:,:);
case 3 % select a time range
if ~isequal(numel(records_to_get),2)
error('LoadTT_openephys:inputArg','Input argument mismatch.')
end
[jnk inxa] = intersect(t,records_to_get); % indices for the time stamps
t = t(inxa(1):inxa(2));
wv = wv(inxa(1):inxa(2),:,:);
case 4 % select an index range
if ~isequal(numel(records_to_get),2)
error('LoadTT_openephys:inputArg','Input argument mismatch.')
end
t = t(records_to_get(1):records_to_get(2));
wv = wv(records_to_get(1):records_to_get(2),:,:);
case 5 % special case: number of spikes
if ~isempty(records_to_get)
error('LoadTT_openephys:inputArg','Input argument mismatch.')
end
t = length(t); % number of spikes
wv = [];
otherwise
error('LoadTT_openephys:inputArg','Record_units should take an integer value from 1 to 5.')
end
if record_units < 5
t = t(:) * 1e4; % enforce column vector form; use MClust time stamp convention
end