Skip to content

Commit

Permalink
Loading .eeg files has been commented
Browse files Browse the repository at this point in the history
Error with .eeg files, the line has been commented until it is fixed.
  • Loading branch information
FernandoPerezLara committed Jun 21, 2022
1 parent 67663e6 commit 2322100
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eegraph/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@

input_format = {'edf': 'mne.io.read_raw_edf(self.path, exclude= self.exclude)', 'gdf': 'mne.io.read_raw_gdf(self.path, exclude= self.exclude)', 'vhdr': 'mne.io.read_raw_egi(self.path)',
'cnt': 'mne.io.read_raw_cnt(self.path)', 'bdf': 'mne.io.read_raw_edf(self.path, exclude= self.exclude)', 'egi': 'mne.io.read_raw_egi(self.path, exclude= self.exclude)',
'mff': 'mne.io.read_raw_egi(self.path, exclude= self.exclude)', 'nxe': 'mne.io.read_raw_eximia(self.path)', 'eeg': 'mne.io.read_raw_nihon(self.path)'}
'mff': 'mne.io.read_raw_egi(self.path, exclude= self.exclude)', 'nxe': 'mne.io.read_raw_eximia(self.path)',
# 'eeg': 'mne.io.read_raw_nihon(self.path)' # FIXME: 'ascii' codec can't decode byte 0xc5 in position 3: ordinal not in range(128)
}

connectivity_measures = {'cross_correlation': 'Cross_correlation_Estimator', 'pearson_correlation': 'Pearson_correlation_Estimator', 'squared_coherence': 'Squared_coherence_Estimator',
'imag_coherence': 'Imag_coherence_Estimator', 'corr_cross_correlation': 'Corr_cross_correlation_Estimator', 'wpli': 'Wpli_Estimator',
Expand Down

0 comments on commit 2322100

Please sign in to comment.