open-ephys / plugin-GUI

Software for processing, recording, and visualizing multichannel electrophysiology data
https://open-ephys.org/gui
GNU General Public License v3.0
193 stars 684 forks source link

EventChannel Metadata is not saved #608

Closed cmmoenne closed 7 months ago

cmmoenne commented 7 months ago

Hi,

I'm updating an old plugin because we revamped our hardware in the lab, so we need to use the new OE GUI. The old GUI allowed metadata to be saved from event channels, but it doesn't work in the current one. I looked at the code, and that functionality is now commented. Is it not working? Do you recommend any alternative?

Thanks for any help!

jsiegle commented 7 months ago

There were very few plugins that used event metadata, and a lot of work was required to enable saving of arbitrary metadata types, so we deprecated this feature in more recent versions of the GUI.

What is the specific metadata you'd like to save? Could it be encoded as text events instead? Those are saved automatically for all data formats.

cmmoenne commented 7 months ago

I'm going to use text messages then (using the getMessageChannel() channel).

What is the specific metadata you'd like to save? We have to log 15 variables represented by integers and floats. I will make a CSV-style message to save them in a single message. Saving floats as text is not the best, but it will work perfectly for us.

Thanks!