Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for just .spikes in folder for OpenEphys #1377

Merged
merged 5 commits into from
Jan 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 29 additions & 22 deletions neo/rawio/openephysrawio.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,27 +171,31 @@ def _parse_header(self):
self._sig_length[seg_index] = all_sigs_length[0]
self._sig_timestamp0[seg_index] = all_first_timestamps[0]

signal_channels = np.array(signal_channels, dtype=_signal_channel_dtype)
self._sig_sampling_rate = signal_channels['sampling_rate'][0] # unique for channel

# split channels in stream depending the name CHxxx ADCxxx
chan_stream_ids = [name[:2] if name.startswith('CH') else name[:3]
for name in signal_channels['name']]
signal_channels['stream_id'] = chan_stream_ids

# and create streams channels (keep natural order 'CH' first)
stream_ids, order = np.unique(chan_stream_ids, return_index=True)
stream_ids = stream_ids[np.argsort(order)]
signal_streams = [(f'Signals {stream_id}', f'{stream_id}') for stream_id in stream_ids]
signal_streams = np.array(signal_streams, dtype=_signal_stream_dtype)

if len(signal_channels) > 0:
signal_channels = np.array(signal_channels, dtype=_signal_channel_dtype)
self._sig_sampling_rate = signal_channels['sampling_rate'][0] # unique for channel

# split channels in stream depending the name CHxxx ADCxxx
chan_stream_ids = [name[:2] if name.startswith('CH') else name[:3]
for name in signal_channels['name']]
signal_channels['stream_id'] = chan_stream_ids

# and create streams channels (keep natural order 'CH' first)
stream_ids, order = np.unique(chan_stream_ids, return_index=True)
stream_ids = stream_ids[np.argsort(order)]
signal_streams = [(f'Signals {stream_id}', f'{stream_id}') for stream_id in stream_ids]
signal_streams = np.array(signal_streams, dtype=_signal_stream_dtype)
else:
signal_streams = np.array([])
# scan for spikes files
spike_channels = []

if len(info['spikes']) > 0:

self._first_spk_timestamps = []
self._last_spk_timestamps = []
self._spikes_memmap = {}
for seg_index, oe_index in enumerate(oe_indices):
oe_indices_spk = sorted(list(info['spikes'].keys()))
for seg_index, oe_index in enumerate(oe_indices_spk):
self._spikes_memmap[seg_index] = {}
for spike_filename in info['spikes'][oe_index]:
fullname = os.path.join(self.dirname, spike_filename)
Expand All @@ -207,6 +211,9 @@ def _parse_header(self):
dtype=spikes_dtype)
self._spikes_memmap[seg_index][name] = data_spike

self._first_spk_timestamps.append(data_spike[0]['timestamp'])
self._last_spk_timestamps.append(data_spike[-1]['timestamp'])

# In each file 'sorted_id' indicate the number of cluster so number of units
# so need to scan file for all segment to get units
self._spike_sampling_rate = None
Expand Down Expand Up @@ -335,9 +342,9 @@ def _get_spike_slice(self, seg_index, unit_index, t_start, t_stop):
data_spike = self._spikes_memmap[seg_index][name]

if t_start is None:
t_start = self._segment_t_start(0, seg_index)
t_start = self._first_spk_timestamps[seg_index]
if t_stop is None:
t_stop = self._segment_t_stop(0, seg_index)
t_stop = self._last_spk_timestamps[seg_index]
ts0 = int(t_start * self._spike_sampling_rate)
ts1 = int(t_stop * self._spike_sampling_rate)

Expand Down Expand Up @@ -489,11 +496,11 @@ def explore_folder(dirname):
if (seg_index + 1) > info['nb_segment']:
info['nb_segment'] += 1
elif filename.endswith('.spikes'):
s = filename.replace('.spikes', '').split('_')
if len(s) == 1:
seg_index = 0
s = re.findall(r"(_\d+)$", filename.replace('.spikes', ''))
if s:
seg_index = int(s[0][1:]) - 1
else:
seg_index = int(s[1]) - 1
seg_index = 0
if seg_index not in info['spikes'].keys():
info['spikes'][seg_index] = []
info['spikes'][seg_index].append(filename)
Expand Down