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

[ENH] Allow MED format for iEEG data (*_ieeg.medd/) #1956

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ stored in one of the following formats:
| [EEGLAB](https://sccn.ucsd.edu/eeglab/index.php) | `.set`, `.fdt` | The format used by the MATLAB toolbox [EEGLAB](https://sccn.ucsd.edu/eeglab/index.php). Each recording consists of a `.set` file with an OPTIONAL `.fdt` file. |
| [Neurodata Without Borders](https://nwb-schema.readthedocs.io/en/latest/) | `.nwb` | Each recording consists of a single `.nwb` file. |
| [MEF3](https://osf.io/e3sf9/) | `.mefd` | Each recording consists of a `.mefd` directory. |
| [MED](https://medformat.org/) | `.medd` | Each recording consists of a `.medd` 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
8 changes: 8 additions & 0 deletions src/schema/objects/extensions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,14 @@ md:
display_name: Markdown
description: |
A Markdown file.
medd:
value: .medd/
display_name: Multiscale Electrophysiology Data Format
description: |
A directory in the [MED](https://medformat.org/) format.
Successor to the MEF 3.0 format.

Each recording consists of a `.medd` directory.
mefd:
value: .mefd/
display_name: Multiscale Electrophysiology File Format Version 3.0
Expand Down
1 change: 1 addition & 0 deletions src/schema/rules/files/raw/ieeg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ieeg:
suffixes:
- ieeg
extensions:
- .medd/
- .mefd/
- .json
- .edf
Expand Down