-
Notifications
You must be signed in to change notification settings - Fork 3
Description
Detailed instructions on how to file a bug can be found in our FAQ.
If your issue is a usage question, please consider asking on our Gitter channel or on our mailing list instead of opening an issue.
Describe the bug
Please provide a clear and concise description of the bug.
Steps and/or code to reproduce
Please provide a code snippet or minimal working example (MWE)
to replicate your problem.
This MWE should be self-contained, which means that other MNE-Python contributors
should be able to copy and paste the provided snippet and replicate the bug.
If possible, use MNE-Python testing examples to reproduce the error. Otherwise,
provide a small and anonymized portion of your data required to reproduce the bug.
If the code is too long, feel free to put it in a public gist and link
it in the issue.
Example:
import mne
fname = mne.datasets.sample.data_path() + '/MEG/sample/sample_audvis_raw.fif'
raw = mne.io.read_raw_fif(fname)
raw = mne.concatenate_raws([raw])
raw.save('test_raw.fif', overwrite=True)
raw_read = mne.io.read_raw_fif('test_raw.fif') # this breaksExpected results
Provide a clear and concise description of what you expected to happen.
Actual results
Please paste or specifically describe the actual output or traceback.
Additional information
Paste the output of mne.sys_info() here.