File tree Expand file tree Collapse file tree 4 files changed +28
-0
lines changed Expand file tree Collapse file tree 4 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -308,6 +308,12 @@ and a guide for using macros can be found at
308
308
-->
309
309
{{ MACROS__ _ make_columns_table("eeg.EEGElectrodes") }}
310
310
311
+ ` *_electrodes.tsv ` files SHOULD NOT be duplicated for each data file,
312
+ for example, during multiple runs of a task.
313
+ The [ inheritance principle] ( ../common-principles.md#the-inheritance-principle ) MUST
314
+ be used to find the appropriate electrode positions for a given data file.
315
+ If electrodes are repositioned, it is RECOMMENDED to use multiple sessions to indicate this.
316
+
311
317
### Example ` *_electrodes.tsv `
312
318
313
319
See also the corresponding [ ` electrodes.tsv ` example] ( #example-channelstsv ) .
Original file line number Diff line number Diff line change @@ -349,6 +349,12 @@ and a guide for using macros can be found at
349
349
-->
350
350
{{ MACROS__ _ make_columns_table("ieeg.iEEGElectrodes") }}
351
351
352
+ ` *_electrodes.tsv ` files SHOULD NOT be duplicated for each data file,
353
+ for example, during multiple runs of a task.
354
+ The [ inheritance principle] ( ../common-principles.md#the-inheritance-principle ) MUST
355
+ be used to find the appropriate electrode positions for a given data file.
356
+ If electrodes are repositioned, it is RECOMMENDED to use multiple sessions to indicate this.
357
+
352
358
### Example ` *_electrodes.tsv `
353
359
354
360
``` Text
Original file line number Diff line number Diff line change
1
+ ---
2
+ ElectrodeSpecificity :
3
+ issue :
4
+ code : EXCESSIVE_ELECTRODE_SPECIFICITY
5
+ message : |
6
+ Run or acquisition entities detected in electrodes.tsv.
7
+ Electrode definitions should generally not vary within a session.
8
+ Consider creating a new session each time electrodes are reconfigured.
9
+ level : warning
10
+ selectors :
11
+ - suffix == 'electrodes'
12
+ - extension == '.tsv'
13
+ checks :
14
+ - ' !("run" in entities)'
15
+ - ' !("acquisition" in entities)'
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ electrodes:
70
70
subject : required
71
71
session : optional
72
72
acquisition : optional
73
+ run : optional
73
74
space : optional
74
75
75
76
# MEG has an additional entity available
You can’t perform that action at this time.
0 commit comments