You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that the probe index was omitted from the name. The pattern {device}{probe_index} is used as a stream_index so in this case we are unable to open this file and the error in this line is triggered:
raiseKeyError(f"key {key} is already in the signals_info_dict")
The solution, I think, is to determine the probe index directly from the metadata and use that to tell the streams apart. I have some stubbed test data and a patch that I will push soon.
The text was updated successfully, but these errors were encountered:
I have a use case when there is multi probe data form SpikeGLX with the following structure:
The problem is that the probe index was omitted from the name. The pattern {device}{probe_index} is used as a stream_index so in this case we are unable to open this file and the error in this line is triggered:
python-neo/neo/rawio/spikeglxrawio.py
Lines 136 to 137 in 2576037
The solution, I think, is to determine the probe index directly from the metadata and use that to tell the streams apart. I have some stubbed test data and a patch that I will push soon.
The text was updated successfully, but these errors were encountered: