importing biosemi .bdf file to mne-python

Dear all,
a really noobie question: how can I import my EEG raw file in .bdf format
to mne-python? Is there a simple way to do it?

All the best and thanks for all,
Mauricio.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20140109/87f58f0f/attachment.html

Hi Mauricio,

That functionality was recently added. The documentation is here

http://martinos.org/mne/stable/generated/mne.fiff.edf.read_raw_edf.html#mne.fiff.edf.read_raw_edf

I'm also working with .bdf data, so I'd be happy to answer any questions
that I can.

- Alan

hi Mauricio,

a really noobie question: how can I import my EEG raw file in .bdf format to
mne-python? Is there a simple way to do it?

something like this should work

from mne.fiff.edf import read_raw_edf
raw = read_raw_edf('file.bdf')

have a look at:

https://github.com/mne-tools/mne-python/blob/master/mne/fiff/edf/edf.py#L563

for the doc of the function

If you have any problem, you can open an issue at:

HTH

Best,
Alex