Converting OpenEphys binary data to NWB format with multiple streams #58
Replies: 4 comments 1 reply
-
@RuthKassahun I'm CC'ing @CodyCBakerPhD @bendichter since this questions is related to neuroconv |
Beta Was this translation helpful? Give feedback.
-
Thank you @oruebel |
Beta Was this translation helpful? Give feedback.
-
@RuthKassahun this script looks correct. Is this not meeting your needs? Does it throw an error? If so, could you copy/paste your entire stack traceback? |
Beta Was this translation helpful? Give feedback.
-
@RuthKassahun Looks like you need to specify different names for the multiple ElectricalSeries This can be done via the Modified code would be something like interface_ap = OpenEphysRecordingInterface(folder_path=folder_path, stream_name='Neuropix-PXI-100.0', verbose=False, es_key="ElectricalSeriesAP")
interface_lfp = OpenEphysRecordingInterface(folder_path=folder_path, stream_name='Neuropix-PXI-100.1', verbose=False, es_key="ElectricalSeriesLF")
interface_nidaq = OpenEphysRecordingInterface(folder_path=folder_path, stream_name='NI-DAQmx-104.0', verbose=False, es_key="ElectricalSeriesNIDQ") |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I'm currently working on converting OpenEphys binary data into NWB format. Initially, I tried to use the script below.
However, I encountered an issue due to having multiple streams of data in my folder structure. The code I used required specifying a specific stream.
Is there a workaround or an alternative approach that you might suggest for converting this data into NWB format while handling multiple streams? Any advice would be greatly appreciated.
Thank you!
Here's how my folder structure looks:
Beta Was this translation helpful? Give feedback.
All reactions