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 current implementation of the RawEEGLAB and EpochsEEGLAB classes in the MNE library does not load all available fields from EEGLAB .set files. Important fields such as 'icaact', 'icawinv', and several others are missing. This feature request aims to extend the functionality of these classes to include all possible fields present in EEGLAB .set files.
The following fields should be added to both RawEEGLAB and EpochsEEGLAB classes:
icaact
icawinv
icasphere
icaweights
icachansind
chanlocs
urchanlocs
chaninfo
ref
event
urevent
eventdescription
epoch
epochdescription
reject
stats
specdata
specicaact
splinefile
icasplinefile
dipfit
history
saved
etc
run
roi
datfile
Describe your proposed implementation
Using Composition and Create a DataContainerEEGLAB Class
I think Composition is a good solution. This class will be responsible for storing and managing all the fields from the EEGLAB .set file. The class will be initialized with a Bunch object containing EEG data and will extract and store all possible fields. Then RawEEGLAB and EpochsEEGLAB classes will have a data_container field.
Describe possible alternatives
Multiple Inheritance
I think it is better not to use multiple inheritance because it may cause problems such as having the same name of the methods, etc.
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the new feature or enhancement
The current implementation of the
RawEEGLAB
andEpochsEEGLAB
classes in the MNE library does not load all available fields from EEGLAB .set files. Important fields such as 'icaact', 'icawinv', and several others are missing. This feature request aims to extend the functionality of these classes to include all possible fields present in EEGLAB .set files.The following fields should be added to both
RawEEGLAB
andEpochsEEGLAB
classes:icaact
icawinv
icasphere
icaweights
icachansind
chanlocs
urchanlocs
chaninfo
ref
event
urevent
eventdescription
epoch
epochdescription
reject
stats
specdata
specicaact
splinefile
icasplinefile
dipfit
history
saved
etc
run
roi
datfile
Describe your proposed implementation
Using Composition and Create a DataContainerEEGLAB Class
I think
Composition
is a good solution. This class will be responsible for storing and managing all the fields from the EEGLAB .set file. The class will be initialized with a Bunch object containing EEG data and will extract and store all possible fields. ThenRawEEGLAB
andEpochsEEGLAB
classes will have adata_container
field.Describe possible alternatives
Multiple Inheritance
I think it is better not to use multiple inheritance because it may cause problems such as having the same name of the methods, etc.
Additional context
No response
The text was updated successfully, but these errors were encountered: