We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64876af commit 5dc5572Copy full SHA for 5dc5572
neo/rawio/neuralynxrawio/neuralynxrawio.py
@@ -291,6 +291,8 @@ def _parse_header(self):
291
event_channels = np.array(event_channels, dtype=_event_channel_dtype)
292
293
if signal_channels.size > 0:
294
+ # ordering streams according from high to low sampling rates
295
+ stream_props = {k: stream_props[k] for k in sorted(stream_props, reverse=True)}
296
names = [f'Stream (rate,#packet,t0): {sp}' for sp in stream_props]
297
ids = [stream_prop['stream_id'] for stream_prop in stream_props.values()]
298
signal_streams = list(zip(names, ids))
0 commit comments