Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] clarify file formats in EEG, iEEG #511

Merged
merged 1 commit into from
Jun 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions src/04-modality-specific-files/03-electroencephalography.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,17 @@ The EEG community uses a variety of formats for storing raw data, and there is
no single standard that all researchers agree on. For BIDS, EEG data MUST be
stored in one of the following formats:

- [European data format](https://www.edfplus.info/) (`.edf`)
- [European data format](https://www.edfplus.info/)
(Each recording consisting of a `.edf` file)

- [BrainVision Core Data Format](https://www.brainproducts.com/productdetails.php?id=21&tab=5)
(`.vhdr`, `.vmrk`, `.eeg`) by Brain Products GmbH
(Each recording consisting of a `.vhdr`, `.vmrk`, `.eeg` file triplet)

- The format used by the MATLAB toolbox [EEGLAB](https://sccn.ucsd.edu/eeglab)
(`.set` and `.fdt` files)
(Each recording consisting of a `.set` file with an optional `.fdt` file)

- [Biosemi](https://www.biosemi.com/) data format (`.bdf`)
- [Biosemi](https://www.biosemi.com/) data format
(Each recording consisting of a `.bdf` file)

It is RECOMMENDED to use the European data format, or the BrainVision data
format. It is furthermore discouraged to use the other accepted formats over
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,20 @@ The iEEG community uses a variety of formats for storing raw data, and there is
no single standard that all researchers agree on. For BIDS, iEEG data MUST be
stored in one of the following formats:

- [European Data Format](https://www.edfplus.info/) (`.edf`)
- [European Data Format](https://www.edfplus.info/)
(Each recording consisting of a `.edf` file)

- [BrainVision Core Data Format](https://www.brainproducts.com/productdetails.php?id=21&tab=5)
(`.vhdr`, `.eeg`, `.vmrk`) by Brain Products GmbH
(Each recording consisting of a `.vhdr`, `.vmrk`, `.eeg` file triplet)

- The format used by the MATLAB toolbox [EEGLAB](https://sccn.ucsd.edu/eeglab)
(`.set` and `.fdt` files)
(Each recording consisting of a `.set` file with an optional `.fdt` file)

- [Neurodata Without Borders](https://github.com/NeurodataWithoutBorders/pynwb)
(`.nwb`)
- [Neurodata Without Borders](https://nwb-schema.readthedocs.io)
(Each recording consisting of a `.nwb` file)

- [MEF3](http://msel.mayo.edu/codes.html) (`.mef`)
- [MEF3](https://msel.mayo.edu/files/codes/MEF%203%20Specification.pdf)
(Each recording consisting of a `.mefd` directory)

It is RECOMMENDED to use the European data format, or the BrainVision data
format. It is furthermore discouraged to use the other accepted formats over
Expand Down