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 21c197b commit aaec649Copy full SHA for aaec649
neo/rawio/openephysrawio.py
@@ -173,7 +173,7 @@ def _parse_header(self):
173
174
# and create streams channels (keep natural order 'CH' first)
175
stream_ids, order = np.unique(chan_stream_ids, return_index=True)
176
- stream_ids = stream_ids[order]
+ stream_ids = stream_ids[np.argsort(order)]
177
signal_streams = [(f'Signals {stream_id}', f'{stream_id}') for stream_id in stream_ids]
178
signal_streams = np.array(signal_streams, dtype=_signal_stream_dtype)
179
0 commit comments