Importing Epoched Data from MNE into Brainstorm

Hi @llr510,

Indeed, Brainstorm does not support events are not supported in epoched .fif files
See: Error message when importing an epoched fif file that was preprocessed with MNE python into brainstorm

Regarding the order of the epochs, they are the same order as in MNE-Python.

In Brainstorm once Epochs are imported (without removing DC)

DataMat = in_bst_data('Subject01/test-epo_02/data_Epoch_trial001.mat', 'F');
% Signals are in field F
signals_in_brainstorm = DataMat.F;

In Python

epochs = mne.read_epochs('test-epo.fif')
signals_in_python = epochs[0]._data

The content of signals_in_brainstorm and signals_in_python is the same.
This is true for all epoch, with a shift of 1 due to indexing


@Francois, any thoughts on getting more data from the MNE .fif files?