Open hotblack91 opened 3 years ago
can you share the file privately or publicly?
can you share the file privately or publicly? …
I think no since it contains sensible information about the patient :(
then you'll need to pinpoint the issue in the code yourself
Describe the bug
I'm working with EEG data acquired using a Nihon Kohden EEG - 2100 system. I'm trying to get some some of the metadata stored in the .PNT files like
meas_id
,first_name
andlast_name
of the patient and so on.When I do an
hexdump -C
of the .PNT file from the command line I can see some of those information but when I try to read the raw file usingmne
and executeraw.info['meas_id']
, orraw.info['subject_info']
I get empty strings.Steps to reproduce
Expected results
Informations like
meas_id
andsubject_info
.Actual results
Empty strings instead of the stored information.
Additional information
I have also tried to use the function
mne.io.nihon.nihon._read_nihon_metadata("myFile.PNT")
but I get the a dictionary with only two entries, namelyversion
andmeas_date
.