-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathenums.yaml
More file actions
1547 lines (1530 loc) · 43.4 KB
/
enums.yaml
File metadata and controls
1547 lines (1530 loc) · 43.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
# This file defines valid values in BIDS key-value pairs.
_EEGCoordSys:
type: string
enum:
- $ref: objects.enums.CapTrak.value
- $ref: objects.enums.EEGLAB.value
- $ref: objects.enums.EEGLAB-HJ.value
- $ref: objects.enums.Other.value
_EMGCoordSys:
type: string
enum:
- $ref: objects.enums.Other.value
_GeneticLevelEnum:
type: string
enum:
- $ref: objects.enums.Genetic.value
- $ref: objects.enums.Genomic.value
- $ref: objects.enums.Epigenomic.value
- $ref: objects.enums.Transcriptomic.value
- $ref: objects.enums.Metabolomic.value
- $ref: objects.enums.Proteomic.value
_MEGCoordSys:
type: string
enum:
- $ref: objects.enums.CTF.value
- $ref: objects.enums.ElektaNeuromag.value # deprecated
- $ref: objects.enums.NeuromagElektaMEGIN.value
- $ref: objects.enums.4DBti.value
- $ref: objects.enums.KitYokogawa.value
- $ref: objects.enums.ChietiItab.value
- $ref: objects.enums.Other.value
_StandardTemplateCoordSys:
type: string
enum:
- $ref: objects.enums.ICBM452AirSpace.value
- $ref: objects.enums.ICBM452Warp5Space.value
- $ref: objects.enums.IXI549Space.value
- $ref: objects.enums.fsaverage.value
- $ref: objects.enums.fsaverageSym.value
- $ref: objects.enums.fsLR.value
- $ref: objects.enums.MNIColin27.value
- $ref: objects.enums.MNI152Lin.value
- $ref: objects.enums.MNI152NLin2009aSym.value
- $ref: objects.enums.MNI152NLin2009bSym.value
- $ref: objects.enums.MNI152NLin2009cSym.value
- $ref: objects.enums.MNI152NLin2009aAsym.value
- $ref: objects.enums.MNI152NLin2009bAsym.value
- $ref: objects.enums.MNI152NLin2009cAsym.value
- $ref: objects.enums.MNI152NLin6Sym.value
- $ref: objects.enums.MNI152NLin6Asym.value
- $ref: objects.enums.MNI305.value
- $ref: objects.enums.NIHPD.value
- $ref: objects.enums.OASIS30AntsOASISAnts.value
- $ref: objects.enums.OASIS30Atropos.value
- $ref: objects.enums.Talairach.value
- $ref: objects.enums.UNCInfant.value
_StandardTemplateDeprecatedCoordSys:
type: string
enum:
- $ref: objects.enums.fsaverage3.value
- $ref: objects.enums.fsaverage4.value
- $ref: objects.enums.fsaverage5.value
- $ref: objects.enums.fsaverage6.value
- $ref: objects.enums.fsaveragesym.value
- $ref: objects.enums.UNCInfant0V21.value
- $ref: objects.enums.UNCInfant1V21.value
- $ref: objects.enums.UNCInfant2V21.value
- $ref: objects.enums.UNCInfant0V22.value
- $ref: objects.enums.UNCInfant1V22.value
- $ref: objects.enums.UNCInfant2V22.value
- $ref: objects.enums.UNCInfant0V23.value
- $ref: objects.enums.UNCInfant1V23.value
- $ref: objects.enums.UNCInfant2V23.value
_iEEGCoordSys:
type: string
enum:
- $ref: objects.enums.Pixels.value
- $ref: objects.enums.ACPC.value
- $ref: objects.enums.ScanRAS.value
- $ref: objects.enums.Other.value
left_hemisphere:
value: 'L'
display_name: Left Hemisphere
description: |
A left hemibrain image.
right_hemisphere:
value: 'R'
display_name: Right Hemisphere
description: |
A right hemibrain image.
CASL:
value: CASL
display_name: Continuous arterial spin labeling
description: |
Continuous arterial spin labeling was employed.
PCASL:
value: PCASL
display_name: Pseudo-continuous arterial spin labeling
description: |
Pseudo-continuous arterial spin labeling was employed.
PASL:
value: PASL
display_name: Pulsed arterial spin labeling
description: |
Pulsed arterial spin labeling was employed.
Separate:
value: Separate
display_name: Separate
description: |
A separate `m0scan` file is present.
Included:
value: Included
display_name: Included
description: |
An m0scan volume is contained within the associated `asl` file.
Estimate:
value: Estimate
display_name: Estimate
description: |
A single whole-brain M0 value is provided in the metadata.
Absent:
value: Absent
display_name: Absent
description: |
No specific M0 information is present.
OneD:
value: 1D
display_name: One-dimensional
description: |
One-dimensional MR acquisition.
TwoD:
value: 2D
display_name: Two-dimensional
description: |
Two-dimensional MR acquisition.
ThreeD:
value: 3D
display_name: Three-dimensional
description: |
Three-dimensional MR acquisition.
HARD:
value: HARD
display_name: Hard pulse
description: |
A very brief, strong, rectangular pulse.
GAUSSIAN:
value: GAUSSIAN
display_name: Gaussian pulse
description: |
A Gaussian pulse.
GAUSSHANN:
value: GAUSSHANN
display_name: Gaussian-Hanning pulse.
description: |
A Gaussian pulse with a Hanning window.
SINC:
value: SINC
display_name: Sinc pulse
description: |
A sinc-shaped pulse.
SINCHANN:
value: SINCHANN
display_name: Sinc-Hanning pulse
description: |
A sinc-shaped pulse with a Hanning window.
SINCGAUSS:
value: SINCGAUSS
display_name: Sinc-Gauss pulse
description: |
A sinc-shaped pulse with a Gaussian window.
FERMI:
value: FERMI
display_name: Fermi pulse
description: |
A Fermi-shaped pulse.
i:
value: i
display_name: i
description: |
The encoding direction is along the first axis of the data in the NIFTI file,
and the encoding value increases from the zero index to the maximum index.
j:
value: j
display_name: j
description: |
The encoding direction is along the second axis of the data in the NIFTI file,
and the encoding value increases from the zero index to the maximum index.
k:
value: k
display_name: k
description: |
The encoding direction is along the third axis of the data in the NIFTI file,
and the encoding value increases from the zero index to the maximum index.
iMinus:
value: i-
display_name: i-
description: |
The encoding direction is along the first axis of the data in the NIFTI file,
and the encoding value decreases from the zero index to the maximum index.
jMinus:
value: j-
display_name: j-
description: |
The encoding direction is along the second axis of the data in the NIFTI file,
and the encoding value decreases from the zero index to the maximum index.
kMinus:
value: k-
display_name: k-
description: |
The encoding direction is along the third axis of the data in the NIFTI file,
and the encoding value decreases from the zero index to the maximum index.
continuous:
value: continuous
display_name: Continuous recording
description: |
Continuous recording.
epoched:
value: epoched
display_name: Epoched recording
description: |
Recording is limited to time windows around events of interest
(for example, stimulus presentations or subject responses).
discontinuous:
value: discontinuous
display_name: Discontinuous recording
description: |
Discontinuous recording.
orig:
value: orig
display_name: orig
description: |
A (potentially unique) per-image space.
Useful for describing the source of transforms from an input image to a target space.
Brain:
value: Brain
display_name: Brain mask
description: |
A brain mask.
Lesion:
value: Lesion
display_name: Lesion mask
description: |
A lesion mask.
Face:
value: Face
display_name: Face mask
description: |
A face mask.
ROI:
value: ROI
display_name: ROI mask
description: |
A region of interest mask.
CapTrak:
value: CapTrak
display_name: CapTrak
description: |
RAS orientation and the origin approximately between LPA and RPA
EEGLAB:
value: EEGLAB
display_name: EEGLAB
description: |
ALS orientation and the origin exactly between LPA and RPA.
For more information, see the
[EEGLAB wiki page](https://eeglab.org/tutorials/ConceptsGuide/coordinateSystem.html#eeglab-coordinate-system).
EEGLAB-HJ:
value: EEGLAB-HJ
display_name: EEGLAB-HJ
description: |
ALS orientation and the origin exactly between LHJ and RHJ.
For more information, see the
[EEGLAB wiki page](https://eeglab.org/tutorials/ConceptsGuide/coordinateSystem.html#\
eeglab-hj-coordinate-system).
Other:
value: Other
display_name: Other
description: |
Other coordinate system.
Genetic:
value: Genetic
display_name: Genetic
description: |
Data report on a single genetic location (typically directly in the `participants.tsv` file).
Genomic:
value: Genomic
display_name: Genomic
description: |
Data link to participants' genome (multiple genetic locations).
Epigenomic:
value: Epigenomic
display_name: Epigenomic
description: |
Data link to participants' characterization of reversible modifications of DNA.
Transcriptomic:
value: Transcriptomic
display_name: Transcriptomic
description: |
Data link to participants RNA levels.
Metabolomic:
value: Metabolomic
display_name: Metabolomic
description: |
Data link to participants' products of cellular metabolic functions.
Proteomic:
value: Proteomic
display_name: Proteomic
description: |
Data link to participants peptides and proteins quantification.
CTF:
value: CTF
display_name: CTF
description: |
ALS orientation and the origin between the ears.
ElektaNeuromag:
value: ElektaNeuromag
display_name: Elekta Neuromag
description: |
RAS orientation and the origin between the ears.
[DEPRECATED](SPEC_ROOT/common-principles.md#definitions).
Dataset curators SHOULD use `NeuromagElektaMEGIN` instead.
NeuromagElektaMEGIN:
value: NeuromagElektaMEGIN
display_name: Neuromag Elekta MEGIN
description: |
RAS orientation and the origin between the ears.
4DBti:
value: 4DBti
display_name: 4D BTI
description: |
ALS orientation and the origin between the ears.
KitYokogawa:
value: KitYokogawa
display_name: KIT/Yokogawa
description: |
ALS orientation and the origin between the ears.
ChietiItab:
value: ChietiItab
display_name: Chieti ITAB
description: |
RAS orientation and the origin between the ears.
calibration:
value: calibration
display_name: calibration
description: |
The fine-calibration file, is produced by the MaxFilter software and the work of
Neuromag/Elekta/MEGIN engineers during maintenance of the MEG acquisition system.
It is specific to the site of recording and may change in the process of regular system maintenance.
it is usually shared with a crosstalk file.
crosstalk:
value: crosstalk
display_name: crosstalk
description: |
The crosstalk file, is produced by the MaxFilter software and the work of
Neuromag/Elekta/MEGIN engineers during maintenance of the MEG acquisition system.
It is specific to the site of recording and may change in the process of regular system maintenance.
it is usually shared with a fine-calibration file.
individual:
value: individual
display_name: individual
description: |
Participant specific anatomical space (for example derived from T1w and/or T2w images).
This coordinate system requires specifying an additional, participant-specific file to be fully defined.
In context of surfaces this space has been referred to as `fsnative`.
In order for this space to be interpretable, `SpatialReference` metadata MUST be provided.
study__space:
value: study
display_name: study
description: |
Custom space defined using a group/study-specific template.
This coordinate system requires specifying an additional file to be fully defined.
In order for this space to be interpretable, `SpatialReference` metadata MUST be provided.
study__datasettype:
value: study
display_name: study
description: |
A study BIDS dataset to organize the data for the entire study (original source data, raw BIDS,
derivatives) as a valid BIDS dataset.
scanner:
value: scanner
display_name: scanner
description: |
The intrinsic coordinate system of the original image (the first entry of `RawSources`)
after reconstruction and conversion to NIfTI or equivalent for the case of surfaces and dual volume/surface
files.
The `scanner` coordinate system is implicit and assumed by default if the derivative filename does not
define **any** `space-<label>`.
Please note that `space-scanner` SHOULD NOT be used,
it is mentioned in this specification to make its existence explicit.
ICBM452AirSpace:
value: ICBM452AirSpace
display_name: ICBM452AirSpace
description: |
Reference space defined by the "average of 452 T1-weighted MRIs of normal young adult brains"
with "linear transforms of the subjects into the atlas space using a 12-parameter affine
transformation".
ICBM452Warp5Space:
value: ICBM452Warp5Space
display_name: ICBM452Warp5Space
description: |
Reference space defined by the "average of 452 T1-weighted MRIs of normal young adult brains"
"based on a 5th order polynomial transformation into the atlas space".
IXI549Space:
value: IXI549Space
display_name: IXI549Space
description: |
Reference space defined by the average of the "549 (...) subjects from the IXI dataset"
linearly transformed to ICBM MNI 452.
Used by SPM12.
fsaverage:
value: fsaverage
display_name: fsaverage
description: |
The `fsaverage` is a surface reference system
(formerly described as fsaverage\[3\|4\|5\|6\|sym\]).
Additionally, by convention,
`fsaverage` is used as shorthand for a **dual template** providing both volumetric and
surface coordinates references,
where the surface template is `fsaverage` and the volumetric template corresponds to a
FreeSurfer variant of `MNI305` space.
Used by Freesurfer.
fsaverageSym:
value: fsaverageSym
display_name: fsaverageSym
description: |
The `fsaverageSym` is a symmetric surface reference system
(formerly described as `fsaveragesym`).
Additionally, by convention,
`fsaverageSym` is used as shorthand for a **dual template** providing both volumetric and
surface coordinates references,
where the surface template is `fsaverageSym` and the volumetric template corresponds to a
FreeSurfer variant of `MNI305` space.
Used by Freesurfer.
fsLR:
value: fsLR
display_name: fsLR
description: |
The `fsLR` is a surface template.
Additionally, by convention,
`fsLR` is used as shorthand for a **dual template** providing both volumetric and surface
coordinates references,
where the surface template is `fsLR` and the volumetric template corresponds to `MNI152NLin6Asym`.
Surface templates are given at several sampling densities:
164k (used by HCP pipelines for 3T and 7T anatomical analysis),
59k (used by HCP pipelines for 7T MRI bold and DWI analysis),
32k (used by HCP pipelines for 3T MRI bold and DWI analysis), or
4k (used by HCP pipelines for MEG analysis) fsaverage_LR surface reconstructed from the T1w image.
Used by Freesurfer and Connectome Workbench.
MNIColin27:
value: MNIColin27
display_name: MNIColin27
description: |
Average of 27 T1 scans of a single subject.
Used by SPM96.
MNI152Lin:
value: MNI152Lin
display_name: MNI152Lin
description: |
Also known as ICBM (version with linear coregistration).
Used by SPM99 to SPM8.
MNI152NLin2009aSym:
value: MNI152NLin2009aSym
display_name: MNI152NLin2009aSym
description: |
Also known as ICBM (non-linear coregistration with 40 iterations, released in 2009).
This is the first symmetric version.
Used by the DARTEL toolbox in SPM12b.
MNI152NLin2009bSym:
value: MNI152NLin2009bSym
display_name: MNI152NLin2009bSym
description: |
Also known as ICBM (non-linear coregistration with 40 iterations, released in 2009).
This is the second symmetric version.
Used by the DARTEL toolbox in SPM12b.
MNI152NLin2009cSym:
value: MNI152NLin2009cSym
display_name: MNI152NLin2009cSym
description: |
Also known as ICBM (non-linear coregistration with 40 iterations, released in 2009).
This is the third symmetric version.
Used by the DARTEL toolbox in SPM12b.
MNI152NLin2009aAsym:
value: MNI152NLin2009aAsym
display_name: MNI152NLin2009aAsym
description: |
Also known as ICBM (non-linear coregistration with 40 iterations, released in 2009).
This is the first asymmetric version.
Used by the DARTEL toolbox in SPM12b.
MNI152NLin2009bAsym:
value: MNI152NLin2009bAsym
display_name: MNI152NLin2009bAsym
description: |
Also known as ICBM (non-linear coregistration with 40 iterations, released in 2009).
This is the second asymmetric version.
Used by the DARTEL toolbox in SPM12b.
MNI152NLin2009cAsym:
value: MNI152NLin2009cAsym
display_name: MNI152NLin2009cAsym
description: |
Also known as ICBM (non-linear coregistration with 40 iterations, released in 2009).
This is the third asymmetric version.
Used by the DARTEL toolbox in SPM12b.
MNI152NLin6Sym:
value: MNI152NLin6Sym
display_name: MNI152NLin6Sym
description: |
Also known as symmetric ICBM 6th generation (non-linear coregistration).
Used by FSL.
MNI152NLin6Asym:
value: MNI152NLin6Asym
display_name: MNI152NLin6Asym
description: |
A variation of `MNI152NLin6Sym` built by A. Janke that is released as the _MNI template_ of FSL.
Volumetric templates included with
[HCP-Pipelines](https://github.com/Washington-University/HCPpipelines/tree/master/global/templates)
correspond to this template too.
Used by FSL and HPC-Pipelines.
MNI305:
value: MNI305
display_name: MNI205
description: |
Also known as avg305.
NIHPD:
value: NIHPD
display_name: NIHPD
description: |
Pediatric templates generated from the NIHPD sample.
Available for different age groups
(4.5-18.5 y.o., 4.5-8.5 y.o., 7-11 y.o., 7.5-13.5 y.o., 10-14 y.o., 13-18.5 y.o.).
This template also comes in either -symmetric or -asymmetric flavor.
OASIS30AntsOASISAnts:
value: OASIS30AntsOASISAnts
display_name: OASIS30AntsOASISAnts
description: |
OASIS30AntsOASISAnts
OASIS30Atropos:
value: OASIS30Atropos
display_name: OASIS30Atropos
description: |
OASIS30Atropos
Talairach:
value: Talairach
display_name: Talairach
description: |
Piecewise linear scaling of the brain is implemented as described in TT88.
UNCInfant:
value: UNCInfant
display_name: UNCInfant
description: |
Infant Brain Atlases from Neonates to 1- and 2-year-olds.
fsaverage3:
value: fsaverage3
display_name: fsaverage3
description: |
Images were sampled to the FreeSurfer surface reconstructed from the subject's T1w image,
and registered to an fsaverage template.
For new datasets, the recommended alternative is fsaverage.
fsaverage4:
value: fsaverage4
display_name: fsaverage4
description: |
Images were sampled to the FreeSurfer surface reconstructed from the subject's T1w image,
and registered to an fsaverage template.
For new datasets, the recommended alternative is fsaverage.
fsaverage5:
value: fsaverage5
display_name: fsaverage5
description: |
Images were sampled to the FreeSurfer surface reconstructed from the subject's T1w image,
and registered to an fsaverage template.
For new datasets, the recommended alternative is fsaverage.
fsaverage6:
value: fsaverage6
display_name: fsaverage6
description: |
Images were sampled to the FreeSurfer surface reconstructed from the subject's T1w image,
and registered to an fsaverage template.
For new datasets, the recommended alternative is fsaverage.
fsaveragesym:
value: fsaveragesym
display_name: fsaveragesym
description: |
Images were sampled to the FreeSurfer surface reconstructed from the subject's T1w image,
and registered to an fsaverage template.
For new datasets, the recommended alternative is fsaverageSym.
UNCInfant0V21:
value: UNCInfant0V21
display_name: UNCInfant0V21
description: |
Infant Brain Atlases from Neonates to 1- and 2-year-olds. See https://www.nitrc.org/projects/pediatricatlas.
For new datasets, the recommended alternative is UNCInfant.
UNCInfant1V21:
value: UNCInfant1V21
display_name: UNCInfant1V21
description: |
Infant Brain Atlases from Neonates to 1- and 2-year-olds. See https://www.nitrc.org/projects/pediatricatlas.
For new datasets, the recommended alternative is UNCInfant.
UNCInfant2V21:
value: UNCInfant2V21
display_name: UNCInfant2V21
description: |
Infant Brain Atlases from Neonates to 1- and 2-year-olds. See https://www.nitrc.org/projects/pediatricatlas.
For new datasets, the recommended alternative is UNCInfant.
UNCInfant0V22:
value: UNCInfant0V22
display_name: UNCInfant0V22
description: |
Infant Brain Atlases from Neonates to 1- and 2-year-olds. See https://www.nitrc.org/projects/pediatricatlas.
For new datasets, the recommended alternative is UNCInfant.
UNCInfant1V22:
value: UNCInfant1V22
display_name: UNCInfant1V22
description: |
Infant Brain Atlases from Neonates to 1- and 2-year-olds. See https://www.nitrc.org/projects/pediatricatlas.
For new datasets, the recommended alternative is UNCInfant.
UNCInfant2V22:
value: UNCInfant2V22
display_name: UNCInfant2V22
description: |
Infant Brain Atlases from Neonates to 1- and 2-year-olds. See https://www.nitrc.org/projects/pediatricatlas.
For new datasets, the recommended alternative is UNCInfant.
UNCInfant0V23:
value: UNCInfant0V23
display_name: UNCInfant0V23
description: |
Infant Brain Atlases from Neonates to 1- and 2-year-olds. See https://www.nitrc.org/projects/pediatricatlas.
For new datasets, the recommended alternative is UNCInfant.
UNCInfant1V23:
value: UNCInfant1V23
display_name: UNCInfant1V23
description: |
Infant Brain Atlases from Neonates to 1- and 2-year-olds. See https://www.nitrc.org/projects/pediatricatlas.
For new datasets, the recommended alternative is UNCInfant.
UNCInfant2V23:
value: UNCInfant2V23
display_name: UNCInfant2V23
description: |
Infant Brain Atlases from Neonates to 1- and 2-year-olds. See https://www.nitrc.org/projects/pediatricatlas.
For new datasets, the recommended alternative is UNCInfant.
Pixels:
value: Pixels
display_name: Pixels
description: |
If electrodes are localized in 2D space (only x and y are
specified and z is n/a), then the positions in this file must correspond to
the locations expressed in pixels on the photo/drawing/rendering of the
electrodes on the brain. In this case, coordinates must be (row,column)
pairs, with (0,0) corresponding to the upper left pixel and (N,0)
corresponding to the lower left pixel.
ACPC:
value: ACPC
display_name: ACPC
description: |
The origin of the coordinate system is at the Anterior Commissure
and the negative y-axis is passing through the Posterior Commissure. The
positive z-axis is passing through a mid-hemispheric point in the superior
direction. The anatomical landmarks are determined in the individual's
anatomical scan and no scaling or deformations have been applied to the
individual's anatomical scan. For more information, see the
[ACPC site](https://www.fieldtriptoolbox.org/faq/acpc/) on the FieldTrip
toolbox wiki.
ScanRAS:
value: ScanRAS
display_name: ScanRAS
description: |
The origin of the coordinate system is the center of the
gradient coil for the corresponding T1w image of the subject, and the x-axis
increases left to right, the y-axis increases posterior to anterior and
the z-axis increases inferior to superior. For more information see the
[Nipy Documentation](https://nipy.org/nibabel/coordinate_systems.html). It is
strongly encouraged to align the subject's T1w to ACPC so that the `ACPC`
coordinate system can be used. If the subject's T1w in the BIDS dataset
is not aligned to ACPC, `ScanRAS` should be used.
on__mtransfer:
value: 'on'
display_name: 'On'
description: |
The image acquired in the presence of the magnetization transfer pulse,
also known as the off-resonance pulse.
off__mtransfer:
value: 'off'
display_name: 'Off'
description: |
The image acquired in the absence of the magnetization transfer pulse.
magnitude:
value: mag
display_name: Magnitude
description: |
A magnitude image, typically paired with an associated "phase" image.
phase:
value: phase
display_name: Phase
description: |
A phase image, typically paird with an associated "magnitude" (part-mag) image.
Images with this key/value pair MAY be in radians or in arbitrary units.
The sidecar JSON file MUST include the units of the `phase` image.
The possible options are `rad` or `arbitrary`.
real:
value: real
display_name: Real
description: |
A real-valued image, typically paired with an associated "imaginary" (part-imag) image.
imaginary:
value: imag
display_name: Imaginary
description: |
An imaginary-valued image, typically paird with an associated "real" image.
ACCEL:
value: ACCEL
display_name: ACCEL
tags:
- fnirs
- motion
description: |
Accelerometer channel, one channel for each spatial axis.
Column `component` for the axis MUST be added to the `*_channels.tsv` file (x, y, or z).
ANGACCEL:
value: ANGACCEL
display_name: ANGACCEL
tags:
- motion
description: |
Angular acceleration channel, one channel for each spatial axis.
Column `component` for the axis MUST be added to the `*_channels.tsv` file (x, y, or z).
GYRO:
value: GYRO
display_name: GYRO
tags:
- fnirs
- motion
description: |
Gyrometer channel, one channel for each spatial axis.
Column `component` for the axis MUST be added to the `*_channels.tsv` file (x, y, or z).
JNTANG:
value: JNTANG
display_name: JNTANG
tags:
- motion
description: |
Joint angle channel between two fixed axis belonging to two bodyparts.
Angle SHOULD be defined between proximal and distal bodypart in `deg`.
LATENCY:
value: LATENCY
display_name: LATENCY
tags:
- emg
- motion
description: |
Latency of samples in seconds from recording onset.
MUST be in form of `ss[.000000]`,
where `[.000000]` is an optional subsecond resolution between 1 and 6 decimal points.
Note that `LATENCY` channels typically contain timestamps from an _external_ clock
source, often with the intent of synchronizing data across multiple devices.
MAGN:
value: MAGN
display_name: MAGN
tags:
- fnirs
- motion
description: |
Magnetic field strength, one channel for each spatial axis.
Column `component` for the axis MUST be added to the `*_channels.tsv` file (x, y or z).
MISC:
value: MISC
display_name: MISC
tags:
- eeg
- emg
- meg
- ieeg
- fnirs
- motion
description: |
Miscellaneous channels.
ORNT:
value: ORNT
display_name: ORNT
tags:
- fnirs
- motion
description: |
Orientation channel, one channel for each spatial axis or quaternion component.
Column `component` for the axis or quaternion label MUST be added to the `*_channels.tsv` file
(x, y, z, quat_x, quat_y, quat_z, or quat_w).
POS:
value: POS
display_name: POS
tags:
- emg
- motion
description: |
Position in space, one channel for each spatial axis.
Column `component` for the axis MUST be added to the `*_channels.tsv` file (x, y or z).
VEL:
value: VEL
display_name: VEL
tags:
- motion
description: |
Velocity, one channel for each spatial axis.
Column `component` for the axis MUST be added to the `*_channels.tsv` file (x, y or z).
AUDIO:
value: AUDIO
display_name: AUDIO
tags:
- eeg
- meg
- ieeg
- fnirs
description: |
Audio signal.
EEG:
value: EEG
display_name: EEG
tags:
- eeg
- meg
- ieeg
- fnirs
description: |
Electroencephalogram channel.
EOG:
value: EOG
display_name: EOG
tags:
- eeg
- emg
- meg
- ieeg
- fnirs
description: |
Generic electrooculogram (eye), different from HEOG and VEOG.
ECG:
value: ECG
display_name: ECG
tags:
- eeg
- emg
- meg
- ieeg
- fnirs
description: |
Electrocardiogram (heart).
EMG:
value: EMG
display_name: EMG
tags:
- eeg
- emg
- meg
- ieeg
- fnirs
description: |
Electromyogram (muscle).
EYEGAZE:
value: EYEGAZE
display_name: EYEGAZE
tags:
- eeg
- meg
- ieeg
- fnirs
description: |
Eye tracker gaze.
GSR:
value: GSR
display_name: GSR
tags:
- eeg
description: |
Galvanic skin response.
HEOG:
value: HEOG
display_name: HEOG
tags:
- eeg
- emg
- meg
- ieeg
- fnirs
description: |
Horizontal EOG (eye).
PPG:
value: PPG
display_name: PPG
tags:
- eeg
description: |
Photoplethysmography.
PUPIL:
value: PUPIL
display_name: PUPIL
tags:
- eeg
- meg
- ieeg
- fnirs
description: |
Eye tracker pupil diameter.
REF:
value: REF
display_name: REF
tags:
- eeg
- emg
- ieeg
description: |
Reference channel.
RESP:
value: RESP
display_name: RESP
tags:
- eeg
description: |
Respiration.
SYSCLOCK:
value: SYSCLOCK
display_name: SYSCLOCK
tags:
- eeg
- emg
- meg
- ieeg
- fnirs
description: |
Elapsed time since trial/recording start, as provided by the recording device.
For device-external timestamp signals, use `LATENCY`.
For TTL-based synchronization signals, use `TRIG`.
TEMP:
value: TEMP
display_name: TEMP
tags:
- eeg
description: |
Temperature.
TRIG:
value: TRIG
display_name: TRIG
tags:
- eeg
- emg
- meg
- ieeg
- fnirs
description: |
Analog (TTL in Volt) or digital (binary TTL) trigger channel.
VEOG:
value: VEOG
display_name: VEOG
tags:
- eeg
- emg
- meg
- ieeg
- fnirs
description: |
Vertical EOG (eye).
MEGMAG:
value: MEGMAG
display_name: MEGMAG
tags:
- meg
- fnirs
description: |
MEG magnetometer.
MEGGRADAXIAL:
value: MEGGRADAXIAL
display_name: MEGGRADAXIAL
tags:
- meg
- fnirs
description: |
MEG axial gradiometer.
MEGGRADPLANAR:
value: MEGGRADPLANAR
display_name: MEGGRADPLANAR
tags:
- meg
- fnirs
description: |
MEG planargradiometer.
MEGREFMAG:
value: MEGREFMAG