Skip to content

Commit ecced53

Browse files
Merge pull request #4 from bachlab/update-MBIDS
Updated event_definitions
2 parents 641518a + 77ce56c commit ecced53

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

source/event_definitions/index.rst

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,46 @@ Task events for behavioral experiments are saved as ``events.tsv`` and ``events.
55

66
In addition to the event definitions provided in the BIDS specification, M-BIDS requires event labels to be stored in an ``event_type`` column. The exact allowed event labels depend on the experiment type or benchmark challenge.
77

8+
Expected file location
9+
----------------------
10+
11+
Fear-conditioning event files should be stored together with the corresponding task recording files. The target folder depends on the available physiological modalities.
12+
13+
.. csv-table:: Table 1: Event file location by modality
14+
:header: "Available data", "Target folder", "Reason"
15+
:widths: 25, 20, 55
16+
17+
"Eye-tracking only", "``beh/``", "Eye-tracking-only datasets can store task events and eye recordings in the behavioral folder."
18+
"SCR only", "``physio/``", "Skin conductance recordings are physiological recordings and should be stored in the physiology folder."
19+
"Eye-tracking and SCR", "``physio/``", "When physiological recordings are present together, the task recordings and corresponding events are stored in the physiology folder."
20+
21+
For an eye-tracking-only fear-conditioning dataset, the structure may look like this:
22+
23+
.. code-block:: text
24+
25+
sub-01/
26+
└── ses-01/
27+
└── beh/
28+
├── sub-01_ses-01_task-fearconditioning_events.json
29+
├── sub-01_ses-01_task-fearconditioning_events.tsv
30+
├── sub-01_ses-01_task-fearconditioning_recording-eye1_physio.json
31+
├── sub-01_ses-01_task-fearconditioning_recording-eye1_physio.tsv.gz
32+
├── sub-01_ses-01_task-fearconditioning_recording-eye2_physio.json
33+
└── sub-01_ses-01_task-fearconditioning_recording-eye2_physio.tsv.gz
34+
35+
For an SCR-only fear-conditioning dataset, the structure may look like this:
36+
37+
.. code-block:: text
38+
39+
sub-<sub_id>/
40+
└── physio/
41+
├── sub-<sub_id>_task-acquisition_events.json
42+
├── sub-<sub_id>_task-acquisition_events.tsv
43+
├── sub-<sub_id>_task-acquisition_recording-scr_physio.json
44+
└── sub-<sub_id>_task-acquisition_recording-scr_physio.tsv.gz
45+
46+
If both eye-tracking and SCR recordings are present, the files should be placed under ``physio/``. This placement follows the modality handling described by BEP020 and BEP045 and is supported by the BIDS importer.
47+
848
Required columns
949
----------------
1050

0 commit comments

Comments
 (0)