|
| 1 | +{ |
| 2 | + "project": {"name": "neurotheque-examples", "version": "0.1.0"}, |
| 3 | + "paths": { |
| 4 | + "source_root": "./data/input", |
| 5 | + "bids_root": "./derivatives/bids", |
| 6 | + "derivatives_root": null, |
| 7 | + "overwrite": false |
| 8 | + }, |
| 9 | + "bids": { |
| 10 | + "manufacturer": "Wearable Sensing", |
| 11 | + "manufacturersModelName": "DSI-24", |
| 12 | + "line_freq": 60, |
| 13 | + "montage": "standard_1020", |
| 14 | + "eeg_reference": "average", |
| 15 | + "dataset_description": {"Name": "DSI-24 Example", "BIDSVersion": "1.8.0"} |
| 16 | + }, |
| 17 | + "filename_parsing": { |
| 18 | + "patterns": [ |
| 19 | + "(?P<subject>\\d+)[_-](?P<session>\\d+).*?(?P<task>gonogo).*?(?P<run>\\d+)", |
| 20 | + "sub[-_](?P<subject>\\d+).*?ses[-_](?P<session>\\d+).*?task[-_](?P<task>[A-Za-z0-9]+).*?run[-_](?P<run>\\d+)" |
| 21 | + ], |
| 22 | + "fallbacks": {"subject": "01", "session": "001", "task": "gonogo", "run": "01"} |
| 23 | + }, |
| 24 | + "events": { |
| 25 | + "trigger_channel": "Trigger", |
| 26 | + "default_task": "gonogo", |
| 27 | + "tasks": { |
| 28 | + "gonogo": { |
| 29 | + "event_map": {"go": [1], "nogo": [2], "response": [8]}, |
| 30 | + "aliases": {"G": 1, "N": 2}, |
| 31 | + "onset_shift_sec": 0.0, |
| 32 | + "debounce_ms": 5.0, |
| 33 | + "epoching": {"tmin": -0.2, "tmax": 0.8, "baseline": [null, 0.0], "preload": true, "reject_by_annotation": true} |
| 34 | + } |
| 35 | + } |
| 36 | + }, |
| 37 | + "preprocessing": { |
| 38 | + "resample_sfreq": null, |
| 39 | + "filter": {"l_freq": 1.0, "h_freq": 40.0}, |
| 40 | + "notch": {"freqs": [60, 120]}, |
| 41 | + "bad_channels": [], |
| 42 | + "reref": "average", |
| 43 | + "ica": {"method": "fastica", "n_components": "auto", "ecg": true, "eog": true, "reject_by_annotation": true}, |
| 44 | + "autoreject": {"enabled": false, "method": "local"}, |
| 45 | + "metrics": {"psd": true, "epochs_rejection": true}, |
| 46 | + "save_intermediates": true |
| 47 | + }, |
| 48 | + "report": {"enabled": true, "title": "Neurothèque Preprocessing Report", "sections": ["psd", "ica", "epochs"], "include_logs": true}, |
| 49 | + "logging": {"level": "INFO", "json_log": true, "log_to_console": true}, |
| 50 | + "batch": {"mode": "single", "n_jobs": 1} |
| 51 | +} |
| 52 | + |
0 commit comments