forked from bids-standard/bids-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CITATION.cff
1356 lines (1346 loc) · 48.7 KB
/
CITATION.cff
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
# schema: https://github.com/citation-file-format/citation-file-format/blob/main/schema-guide.md
cff-version: 1.2.0
title: The Brain Imaging Data Structure (BIDS) Specification
abstract: >-
The Brain Imaging Data Structure (BIDS) is a simple and intuitive way to organize and describe data.
version: 1.10.0-dev
license: CC-BY-4.0
repository-code: https://github.com/bids-standard/bids-specification
message: >-
To cite the BIDS specification, please follow the instructions here:
https://bids-specification.rtfd.io/en/latest/introduction.html#citing-bids
HTML versions of the BIDS specification can be browsed following this link:
https://bids-specification.rtfd.io
PDF versions of the BIDS specification can be found in the Zenodo archives
listed under "identifiers" below in the present `CITATION.cff` file.
identifiers:
- description: PDFs of the BIDS specification for versions 1.9.0 and above
type: doi
value: 10.5281/zenodo.10175845
- description: PDFs of the BIDS specification for versions 1.0.0 to 1.8.0
type: doi
value: 10.5281/zenodo.3686061
keywords:
- brain imaging data structure
- bids
- standards
- data-standards
authors:
- given-names: Aaron
family-names: Oliver-Taylor
- given-names: Adam
family-names: Li
website: https://adam2392.github.io/
- given-names: Adam
family-names: Thomas
website: https://cmn.nimh.nih.gov/dsst
orcid: https://orcid.org/0000-0002-2850-1419
affiliation: NIMH, Intramural Research Program, Bethesda, MD, 20891, USA
email: [email protected]
- given-names: Adeen
family-names: Flinker
website: http://flinkerlab.org
orcid: https://orcid.org/0000-0003-1247-1283
affiliation: New York University, Department of Neurology, New York City, New
York, 10016, USA
email: [email protected]
- given-names: Adina S.
family-names: Wagner
website: https://www.adina-wagner.com
orcid: https://orcid.org/0000-0003-2917-3450
affiliation: Institute of Neuroscience and Medicine (INM-7), Research Center Juelich,
Juelich, 52428, Germany
email: [email protected]
- given-names: Agah
family-names: Karakuzu
website: https://agahkarakuzu.github.io
orcid: https://orcid.org/0000-0001-7283-271X
email: [email protected]
- given-names: Aki
family-names: Nikolaidis
website: https://github.com/AkiNikolaidis
orcid: https://orcid.org/0000-0001-8960-1934
- given-names: Alberto
family-names: Lazari
- given-names: Alejandro
family-names: de la Vega
website: https://github.com/adelavega
- given-names: Alessio
family-names: Giacomel
website: https://github.com/alegiac95
orcid: https://orcid.org/0000-0002-7784-2041
affiliation: GlaxoSmithKline Research and Development
- given-names: Alex
family-names: Rockhill
website: https://github.com/alexrockhill
orcid: https://orcid.org/0000-0003-3868-7453
email: [email protected]
- given-names: Alexander
family-names: Jones
- given-names: Alexander L.
family-names: Cohen
website: https://bchcohenlab.com
orcid: https://orcid.org/0000-0001-6557-5866
affiliation: Boston Children's Hospital, Department of Neurology, Boston, MA,
02115, USA
email: [email protected]
- given-names: Alexander
family-names: von Lautz
- given-names: Alexandre
family-names: Gramfort
website: http://alexandre.gramfort.net
orcid: https://orcid.org/0000-0001-9791-4404
affiliation: Inria, Université Paris-Saclay
email: [email protected]
- given-names: Alexandre
family-names: Hutton
- given-names: Alexandre
family-names: Routier
website: https://github.com/alexandreroutier
orcid: https://orcid.org/0000-0003-1603-8049
- given-names: Alexandru
family-names: Foias
website: https://github.com/alexfoias
orcid: https://orcid.org/0000-0001-5160-1402
- given-names: Ali
family-names: Khan
- given-names: Alizee
family-names: Wickenheiser
affiliation: LORIS, MCIN, Montreal Neurological Institute, McGill University
email: [email protected]
- given-names: Ana
family-names: Fouto
- given-names: Anders
family-names: Eklund
website: https://github.com/wanderine
- given-names: Andrea
family-names: Pigorini
- given-names: Andrew
family-names: Hoopes
- given-names: Andrew
family-names: Jahn
- given-names: Andrew
family-names: Janke
website: http://apjanke.net
email: [email protected]
- given-names: Anibal
family-names: Sólon
website: https://anibalsolon.com/
orcid: https://orcid.org/0000-0002-2050-0614
email: [email protected]
- given-names: Anthony
family-names: Galassi
website: https://github.com/bendhouseart
orcid: https://orcid.org/0000-0001-6550-4574
- given-names: Ariel
family-names: Rokem
website: https://arokem.org/
orcid: https://orcid.org/0000-0003-0679-1985
affiliation: University of Washington, Psychology, Seattle, WA, 98107, United
States of America
email: [email protected]
- given-names: Arjen
family-names: Stolk
- given-names: Arnaud
family-names: Delorme
website: https://www.arnauddelorme.com
orcid: https://orcid.org/0000-0002-0799-3557
affiliation: Swartz Center for Computational Neuroscience
email: [email protected]
- given-names: Arnaud
family-names: Marcoux
website: https://github.com/arnaudmarcoux
- given-names: Arshitha
family-names: Basavaraj
website: https://github.com/Arshitha
orcid: https://orcid.org/0000-0002-6984-7969
affiliation: NIMH, Data Science and Sharing Team, Bethesda, MD, 20892, USA
email: [email protected]
- given-names: Ashley G.
family-names: Gillman
website: https://github.com/ashgillman
- given-names: Athanasia
family-names: Monika Mowinckel
website: https://github.com/drmowinckels
orcid: https://orcid.org/0000-0002-5756-0223
affiliation: University of Oslo
- given-names: Aysegul
family-names: Gunduz
- given-names: Azeez
family-names: Adebimpe
orcid: https://orcid.org/0000-0001-9049-0135
affiliation: University of Pennsylvania
- given-names: B.
family-names: Nolan Nichols
- given-names: Balint
family-names: Kincses
- given-names: Benjamin
family-names: Beasley
website: https://github.com/musicinmybrain
- given-names: Benjamin
family-names: Dichter
- given-names: Benjamin
family-names: Gagl
orcid: https://orcid.org/0000-0002-2339-6293
affiliation: University of Vienna
- given-names: Bertrand
family-names: Thirion
website: https://github.com/bthirion
orcid: https://orcid.org/0000-0001-5018-7895
- given-names: Bradley
family-names: Voytek
website: https://www.voyteklab.com/
orcid: https://orcid.org/0000-0003-1640-2525
affiliation: UC San Diego, Cognitive Science and Data Science, La Jolla, CA, 92093,
USA
- given-names: Brett L.
family-names: Foster
- given-names: Brian A.
family-names: Wandell
- given-names: Brian N.
family-names: Lundstrom
- given-names: Camille
family-names: Maumet
website: https://camillemaumet.com/
orcid: https://orcid.org/0000-0002-6290-553X
affiliation: Inria, Univ Rennes, CNRS, Inserm, Rennes, 35042, France
- given-names: Carlo
family-names: Miniussi
orcid: https://orcid.org/0000-0002-5436-4745
affiliation: University of Trento
- given-names: Cecile
family-names: Madjar
affiliation: LORIS, MCIN, Montreal Neurological Institute, McGill University
email: [email protected]
- given-names: Chloé
family-names: Pasturel
- given-names: Chris
family-names: Benjamin
- given-names: Chris
family-names: Gahnström
- given-names: Chris
family-names: Holdgraf
website: http://chrisholdgraf.com
orcid: https://orcid.org/0000-0002-9420-9301
- given-names: Chris J.
family-names: Gorgolewski
website: http://chrisgorgolewski.org
orcid: https://orcid.org/0000-0003-3321-7583
affiliation: Google LLC
email: [email protected]
- given-names: Chris
family-names: Rorden
website: https://www.mricro.com
orcid: https://orcid.org/0000-0002-7554-6142
affiliation: University of South Carolina, Department of Psychology, Columbia,
SC, 29016, USA
email: [email protected]
- given-names: Christian
family-names: Büchel
- given-names: Christian
family-names: Horea
website: http://www.chymera.eu
orcid: https://orcid.org/0000-0001-7037-2449
affiliation: Dartmouth College, PBS, Hanover NH/USA
email: [email protected]
- given-names: Christine
family-names: Rogers
orcid: https://orcid.org/0000-0002-9893-8448
affiliation: McGill Centre for Integrative Neuroscience, Montreal Neurological
Institute
email: [email protected]
- given-names: Christophe
family-names: Phillips
website: https://www.uliege.be/cms/c_9054334/en/directory/?uid=U016440
orcid: https://orcid.org/0000-0002-4990-425X
affiliation: University of Liège, GIGA CRC in vivo imaging, Liège, 4000, Belgium
email: [email protected]
- given-names: Christopher J.
family-names: Honey
website: https://www.honeylab.org
orcid: https://orcid.org/0000-0002-0745-5089
affiliation: Johns Hopkins University, Psychological and Brain Sciences, Baltimore,
MD, 21218, United States
- given-names: Christopher J.
family-names: Markiewicz
website: https://github.com/effigies
email: [email protected]
- given-names: Christopher
family-names: Lee-Messer
- given-names: Clara
family-names: Moreau
- given-names: Clint
family-names: Hansen
affiliation: Kiel University
email: [email protected]
- given-names: Cyril
family-names: Pernet
website: https://cpernet.github.io/
orcid: https://orcid.org/0000-0003-4010-4632
affiliation: Neurobiology Research Unit, Copenhagen University Hospital Rigshospitalet,
DK-2100 Copenhagen, Denmark
email: [email protected]
- given-names: Cyrus
family-names: Eierud
website: https://trendscenter.org/cyrus-eierud/
orcid: https://orcid.org/0000-0002-9942-676X
affiliation: Georgia State University
email: [email protected]
- given-names: D.
family-names: Sturgeon
website: https://dasturge.github.io
- given-names: Dan
family-names: Levitas
website: https://github.com/dlevitas
orcid: https://orcid.org/0000-0003-2279-7447
affiliation: Indiana University, Psychological & Brain Sciences, Bloomington,
IN, 47405, USA
email: [email protected]
- given-names: Dan
family-names: Lurie
website: https://github.com/danlurie
- given-names: Daniel A.
family-names: Handwerker
- given-names: David
family-names: Alsop
- given-names: David
family-names: Boas
website: http://bu.edu/neurophotonics
orcid: https://orcid.org/0000-0002-6709-7711
affiliation: Boston University, Biomedical Engineering, Boston, MA 02215 USA
email: [email protected]
- given-names: David
family-names: Groppe
website: https://github.com/dmgroppe
orcid: https://orcid.org/0000-0002-3282-2514
affiliation: Persyst Development Corporation, R&D, Toronto, ON M4K 1W8 Canada
email: [email protected]
- given-names: David
family-names: Keator
website: https://github.com/dbkeator
orcid: https://orcid.org/0000-0001-5281-5576
affiliation: Change Your Brain, Change Your Life Foundation
- given-names: David
family-names: McAlpine
- given-names: David
family-names: Thomas
- given-names: Dejan
family-names: Draschkow
orcid: https://orcid.org/0000-0003-1354-4835
affiliation: University of Oxford
- given-names: Dianne
family-names: Patterson
website: https://profiles.arizona.edu/person/dkp
orcid: https://orcid.org/0000-0001-7518-3110
affiliation: University of Arizona, RII, Tucson Arizona 85721 USA
email: [email protected]
- given-names: Dimitri
family-names: Papadopoulos Orfanos
website: https://github.com/DimitriPapadopoulos
- given-names: Dmitry
family-names: Petrov
- given-names: Dora
family-names: Hermes
website: https://github.com/dorahermes
- given-names: Dorien
family-names: Huijser
website: https://github.com/DorienHuijser
orcid: https://orcid.org/0000-0003-3282-8083
affiliation: Utrecht University
- given-names: Douglas N.
family-names: Greve
website: https://github.com/dngreve
- given-names: Duncan
family-names: Macleod
- given-names: Dung
family-names: Truong
website: https://github.com/dungscout96
affiliation: Swartz Center for Computational Neuroscience
email: [email protected]
- given-names: Dylan
family-names: Nielson
website: https://github.com/Shotgunosine
orcid: https://orcid.org/0000-0003-4613-6643
- given-names: Eduard
family-names: Ort
website: https://github.com/eort
orcid: https://orcid.org/0000-0001-5546-3561
affiliation: Heinrich-Heine-University, Department of Experimental Psychology,
Dusseldorf, 40224, Germany
- given-names: Eleonora
family-names: Marcantoni
orcid: https://orcid.org/0000-0003-1137-4983
affiliation: IRCCS Istituto Centro San Giovanni di Dio Fatebenefratelli di Brescia
- given-names: Elizabeth
family-names: Bock
- given-names: Elizabeth
family-names: DuPre
website: https://elizabeth-dupre.com
orcid: https://orcid.org/0000-0003-1358-196X
affiliation: Stanford University, Department of Psychology, Stanford, CA, 94063,
USA
- given-names: Elke
family-names: Warmerdam
affiliation: Saarland University
email: [email protected]
- given-names: Erdal
family-names: Karaca
website: https://github.com/erdalkaraca
- given-names: Eric A.
family-names: Earl
website: https://ericearl.github.io/
orcid: https://orcid.org/0000-0001-5512-0083
affiliation: NIMH Data Science & Sharing Team, Bethesda, MD, 20892, USA
email: [email protected]
- given-names: Eric
family-names: Achten
website: https://github.com/rikAchten
- given-names: Eric
family-names: Bridgeford
- given-names: Erin W.
family-names: Dickie
website: http://imaging-genetics.camh.ca/
- given-names: Ethan
family-names: Blackwood
orcid: https://orcid.org/0000-0002-3049-0640
affiliation: University of Pennsylvania
- given-names: Eugene P.
family-names: Duff
website: http://eduff.github.io
orcid: https://orcid.org/0000-0001-8795-5472
affiliation: UK Dementia Research Institute, Imperial College London, UK
email: [email protected]
- given-names: Ezequiel
family-names: Mikulan
orcid: https://orcid.org/0000-0001-7259-6120
affiliation: University of Milan
- given-names: Felipe
family-names: Orihuela-Espina
- given-names: Fidel
family-names: Alfaro Almagro
- given-names: Filip
family-names: Szczepankiewicz
orcid: https://orcid.org/0000-0002-5251-587X
affiliation: Lund University
- given-names: Filippo
family-names: Maria Castelli
website: https://github.com/filippocastelli
orcid: https://orcid.org/0000-0001-8170-8905
affiliation: University of Florence, European Laboratory for NonLinear Spectroscopy,
Sesto Fiorentino, (FI), 50019, Italy
email: [email protected]
- given-names: Franco
family-names: Pestilli
website: https://liberalarts.utexas.edu/psychology/faculty/fp4834
- given-names: Franklin W.
family-names: Feingold
website: https://github.com/franklin-feingold
orcid: https://orcid.org/0000-0002-6533-2909
affiliation: Stanford University
- given-names: François
family-names: Tadel
- given-names: Gaia
family-names: Rizzo
website: http://fair.dei.unipd.it/gaia-rizzo/
orcid: https://orcid.org/0000-0001-7272-8576
affiliation: Invicro, Burlington Danes Building, Imperial College London, Hammersmith
Hospital, Du Cane Road, London, W12 0NN, UK
- given-names: Gang
family-names: Chen
website: https://github.com/afni-gangc
orcid: https://orcid.org/0000-0002-2960-089X
affiliation: National Institutes of Health, Scientific and Statistical Computing
Core, NIMH, Bethesda, MD 20892, USA
email: [email protected]
- given-names: Gaël
family-names: Varoquaux
website: https://github.com/GaelVaroquaux
- given-names: Ghislain
family-names: Vaillant
website: https://github.com/ghisvail
orcid: https://orcid.org/0000-0003-0267-3033
- given-names: Giacomo
family-names: Bertazzoli
orcid: https://orcid.org/0000-0003-1624-2576
affiliation: Centro San Giovanni di Dio Fatebenefratelli
- given-names: Giacomo
family-names: Guidali
orcid: https://orcid.org/0000-0002-3741-0404
affiliation: IRCCS Centro San Giovanni di Dio Fatebenefratelli
- given-names: Giacomo
family-names: Mazzamuto
website: https://github.com/gmazzamuto
orcid: https://orcid.org/0000-0003-3077-3904
affiliation: National Institute of Optics, National Research Council
email: [email protected]
- given-names: Gilles
family-names: de Hollander
website: https://github.com/Gilles86
- given-names: Gio
family-names: Piantoni
- given-names: Gitte M.
family-names: Knudsen
- given-names: Giulio
family-names: Castegnaro
- given-names: Giuseppe
family-names: Gallitto
orcid: https://orcid.org/0000-0001-5185-0206
affiliation: Essen University Hospital
- given-names: Graham
family-names: Searle
- given-names: Granville J.
family-names: Matheson
website: http://www.granvillematheson.com
- given-names: Gregory
family-names: Kiar
website: https://github.com/gkiar
orcid: https://orcid.org/0000-0001-8915-496X
affiliation: Child Mind Institute
- given-names: Gregory
family-names: Noack
website: https://github.com/thinknoack
- given-names: Greydon
family-names: Gilmore
website: http://greydongilmore.com
orcid: https://orcid.org/0000-0001-7523-5734
email: [email protected]
- given-names: Guillaume
family-names: Flandin
website: https://www.fil.ion.ucl.ac.uk/team/spm-team/
orcid: https://orcid.org/0000-0003-0077-7859
affiliation: University College London
- given-names: Gunnar
family-names: Schaefer
orcid: https://orcid.org/0000-0001-9661-2121
- given-names: Gustav
family-names: Nilsonne
website: https://nilsonne.net/about/
orcid: https://orcid.org/0000-0001-5273-0150
affiliation: Karolinska Institutet, Department of Clinical Neuroscience, Stockholm,
17177, Sweden
email: [email protected]
- given-names: Hamish
family-names: Innes-Brown
orcid: https://orcid.org/0000-0002-1512-2823
affiliation: Oticon A/S, Eriksholm Research Centre, Snekkersten, Denmark
email: [email protected]
- given-names: Hanne D.
family-names: Hansen
orcid: https://orcid.org/0000-0001-5564-7627
affiliation: Copenhagen University Hospital, Neurobiology Research Unit, Section
8057, Blegdamsvej 9, 2100 Copenhagen, Denmark
email: [email protected]
- given-names: Hanzhang
family-names: Lu
orcid: https://orcid.org/0000-0003-3871-1564
affiliation: Johns Hopkins Medicine
- given-names: Hao-Ting
family-names: Wang
website: https://github.com/htwangtw
orcid: https://orcid.org/0000-0003-4078-2038
affiliation: CRIUGM, Montreal, Quebec, H3W 1W5, Canada
email: [email protected]
- given-names: Helena
family-names: Cockx
website: https://github.com/helenacockx
orcid: https://orcid.org/0000-0001-7782-7178
affiliation: Radboud University
email: [email protected]
- given-names: Henk
family-names: Mutsaerts
website: http://www.ExploreASL.org
orcid: https://orcid.org/0000-0003-0894-0307
affiliation: Amsterdam University Medical Centers, Radiology and Nuclear Department,
Amsterdam, 1013 EG, The Netherlands
email: [email protected]
- given-names: Hernando
family-names: Ombao
- given-names: Hugo
family-names: Boniface
website: https://github.com/Hboni
- given-names: Ilkay
family-names: Isik
website: https://github.com/ilkayisik
orcid: https://orcid.org/0000-0002-1652-9297
affiliation: Max Planck Institute for Empirical Aesthetics
- given-names: Ilona
family-names: Lipp
website: https://github.com/IlonaLipp
- given-names: International
family-names: Neuroinformatics Coordinating Facility
website: https://github.com/INCF
- given-names: Iris
family-names: Groen
website: https://github.com/irisgroen
- given-names: Isla
family-names: Staden
orcid: https://orcid.org/0000-0002-0795-1154
- given-names: Jaap
family-names: von der Aar
- given-names: Jakub
family-names: Kaczmarzyk
website: https://github.com/kaczmarj
orcid: https://orcid.org/0000-0002-5544-7577
- given-names: James
family-names: Gholam
orcid: https://orcid.org/0000-0003-4513-2341
- given-names: James
family-names: Kent
website: https://github.com/jdkent
- given-names: Jan
family-names: Mathijs Schoffelen
website: https://github.com/schoffelen
orcid: https://orcid.org/0000-0003-0923-6610
affiliation: Radboud University Nijmegen, Donders Institute, Nijmegen, 6500 HB,
The Netherlands
email: [email protected]
- given-names: Jan
family-names: Petr
website: https://www.exploreasl.org
orcid: https://orcid.org/0000-0002-3201-6002
affiliation: Helmholtz-Zentrum Dresden-Rossendorf, Dresden, 01309, Germany
email: [email protected]
- given-names: Jan-Mathijs
family-names: Schoffelen
- given-names: Jean-Baptiste
family-names: Poline
website: https://github.com/jbpoline
orcid: https://orcid.org/0000-0002-9794-749X
- given-names: Jean-Christophe
family-names: Houde
website: http://scil.dinf.usherbrooke.ca/jchoude
orcid: https://orcid.org/0000-0003-3026-021X
affiliation: Université de Sherbrooke
email: [email protected]
- given-names: Jean-Dominique
family-names: Gallezot
orcid: https://orcid.org/0000-0003-0399-8374
affiliation: Yale School of Medicine, Department of Radiology and Biomedical Imaging,
New Haven, CT, 06511, USA
email: [email protected]
- given-names: Jean-Philippe
family-names: Lachaux
orcid: https://orcid.org/0000-0002-9459-0667
affiliation: INSERM
- given-names: Jeanette
family-names: Mumford
website: https://jeanettemumford.org/
affiliation: Stanford, Department of Psychology, Stanford, CA
- given-names: Jefferson
family-names: Casimir
affiliation: LORIS, MCIN, Montreal Neurological Institute, McGill University
email: [email protected]
- given-names: Jeffrey G.
family-names: Ojemann
- given-names: Jeffrey S.
family-names: Grethe
website: http://profiles.ucsd.edu/jeffrey.grethe
- given-names: JegouA
website: https://github.com/JegouA
- given-names: Jelle
family-names: Dalenberg
website: https://github.com/jrdalenberg
orcid: https://orcid.org/0000-0001-8580-5358
affiliation: University of Groningen, University Medical Center Groningen, Department
of Neurology, Movement Disorders Groningen, Hanzeplein 1, 9713 GZ, Groningen
email: [email protected]
- given-names: Jeremy
family-names: Moreau
- given-names: Jessica A.
family-names: Turner
- given-names: Jochem
family-names: Rieger
website: https://uol.de/en/applied-neurocognitive-psychology
orcid: https://orcid.org/0000-0003-0955-2306
affiliation: Oldenburg University, Dept. of Psychology, 26129, Germany
email: [email protected]
- given-names: John
family-names: Detre
orcid: https://orcid.org/0000-0002-8115-6343
affiliation: University of Pennsylvania
- given-names: John
family-names: Pellman
orcid: https://orcid.org/0000-0001-6810-4461
- given-names: John T.
family-names: Wodder
website: https://github.com/jwodder
- given-names: Joke
family-names: Durnez
website: https://github.com/jokedurnez
orcid: https://orcid.org/0000-0001-9030-2202
affiliation: Stanford University
- given-names: Jon
family-names: Haitz Legarreta Gorroño
website: https://github.com/jhlegarreta
orcid: https://orcid.org/0000-0002-9661-1396
affiliation: Université de Sherbrooke, Department of Computer Science, Sherbrooke,
(Québec), J1K 2R1, Canada
email: [email protected]
- given-names: Jonathan C.
family-names: Lau
- given-names: Jonathan
family-names: Winawer
website: https://github.com/JWinawer
- given-names: Joost
family-names: Kuijer
website: https://github.com/wadqc
orcid: https://orcid.org/0000-0002-4181-0427
affiliation: Amsterdam University Medical Centers, Radiology and Nuclear Medicine,
Amsterdam, 1081 HV, The Netherlands
email: [email protected]
- given-names: Jose
family-names: Manuel Saborit
- given-names: Joseph
family-names: Wexler
orcid: https://orcid.org/0000-0001-9086-8484
affiliation: Loyola University Chicago
- given-names: Joseph
family-names: Woods
website: https://www.ndcn.ox.ac.uk/team/joseph-woods
orcid: https://orcid.org/0000-0002-0329-824X
affiliation: University of Oxford, Nuffield Department of Clinical Neuroscience,
Oxford, UK
email: [email protected]
- given-names: Julia
family-names: Guiomar Niso Galán
website: http://guiomarniso.com
orcid: https://orcid.org/0000-0001-5872-8924
affiliation: Indiana University
- given-names: Julia
family-names: Sprenger
website: https://github.com/juliasprenger
orcid: https://orcid.org/0000-0002-9986-7477
affiliation: Institute de Neuroscience de la Timone, CNRS, Marseille, 13005, France
email: [email protected]
- given-names: Julien
family-names: Cohen-Adad
website: https://www.neuro.polymtl.ca
orcid: https://orcid.org/0000-0003-3662-9532
affiliation: Polytechnique Montreal, Department of Electrical Engineering, Montreal,
QC, Canada
- given-names: Julius
family-names: Welzel
website: https://github.com/JuliusWelzel
orcid: https://orcid.org/0000-0001-8958-0934
affiliation: Kiel University
email: [email protected]
- given-names: Kai J.
family-names: Miller
- given-names: Kangjoo
family-names: Lee
website: https://github.com/Kangjoo
orcid: https://orcid.org/0000-0002-7760-8079
affiliation: Yale School of Medicine
- given-names: Katja
family-names: Heuer
website: https://github.com/katjaq
orcid: https://orcid.org/0000-0002-7237-0196
affiliation: Institut Pasteur
- given-names: Kay
family-names: Robbins
website: http://www.cs.utsa.edu/~krobbins
orcid: https://orcid.org/0000-0002-7147-5797
affiliation: University of Texas at San Antonio Department of Computer Science
San Antonio, TX 78249 USA
email: [email protected]
- given-names: Kevin
family-names: Larcher
- given-names: Kimberly
family-names: Ray
orcid: https://orcid.org/0000-0003-1302-2834
affiliation: UT Austin
email: [email protected]
- given-names: Kirstie
family-names: Whitaker
website: https://whitakerlab.github.io
orcid: https://orcid.org/0000-0001-8498-4059
affiliation: University of Cambridge
email: [email protected]
- given-names: Klara
family-names: Gregorova
website: https://github.com/greckla
orcid: https://orcid.org/0000-0002-3828-9386
- given-names: Klaus
family-names: Gramann
affiliation: Technical University Berlin
email: [email protected]
- given-names: Kris
family-names: Thielemans
website: https://iris.ucl.ac.uk/iris/browse/profile?upi=KTHIE60
- given-names: Kristofer
family-names: Bouchard
website: https://bouchardlab.lbl.gov
orcid: https://orcid.org/0000-0002-1974-4603
affiliation: LBNL, Scientific Data Division
email: [email protected]
- given-names: Kurt
family-names: Schilling
website: https://github.com/schillkg
- given-names: Laetitia
family-names: Fesselier
affiliation: LORIS, MCIN, Montreal Neurological Institute, McGill University
email: [email protected]
- given-names: Laura
family-names: and John Arnold Foundation
- given-names: Leandro
family-names: Beltrachini
orcid: https://orcid.org/0000-0003-4602-1416
affiliation: Cardiff University, Cardiff University Brain Research Imaging Centre
(CUBRIC), UK
email: [email protected]
- given-names: Lee
family-names: Kamentsky
website: https://github.com/LeeKamentsky
orcid: https://orcid.org/0000-0002-8161-3604
affiliation: MIT
- given-names: Lennart
family-names: Walger
orcid: https://orcid.org/0000-0002-3300-6877
- given-names: Lennart
family-names: Wittkuhn
website: https://github.com/lnnrtwttkhn
orcid: https://orcid.org/0000-0003-2966-6888
affiliation: Max Planck Institute for Human Development
- given-names: Liberty
family-names: Hamilton
website: https://github.com/libertyh
- given-names: Luca
family-names: Pollonini
website: https://polloninilab.com
orcid: https://orcid.org/0000-0003-2955-6355
affiliation: University of Houston, Dept. of Engineering Technology, Houston TX
77204, USA
email: [email protected]
- given-names: Luis
family-names: Hernandez-Garcia
- given-names: Luke J.
family-names: Edwards
orcid: https://orcid.org/0000-0002-8320-7298
affiliation: Max Planck Institute for Human Cognitive and Brain Sciences
- given-names: Lyuba
family-names: Zehl
website: https://github.com/lzehl
orcid: https://orcid.org/0000-0002-5947-9939
affiliation: Forschungszentrum Jülich
- given-names: Mainak
family-names: Jas
website: http://jasmainak.github.io/
orcid: https://orcid.org/0000-0002-3199-9027
- given-names: Manjari
family-names: Narayan
- given-names: Manuel
family-names: Mercier
orcid: https://orcid.org/0000-0001-6358-4734
affiliation: Dynamics of Cognitive Processes Group Institut de Neurosciences des
Systèmes, INS - UMR 1106 Inserm Aix-Marseille Université, France
- given-names: Maqsood
family-names: Yaqub
orcid: https://orcid.org/0000-0003-2122-740X
affiliation: Amsterdam UMC, locatie VUmc
- given-names: Marc
family-names: Lalancette
website: https://github.com/Moo-Marc
orcid: https://orcid.org/0000-0003-1161-3972
affiliation: Montreal Neurological Institute-Hospital, McConnell Brain Imaging
Center, Montreal, Quebec, H2A
- given-names: Marco
family-names: Castellaro
website: https://github.com/marcocastellaro
orcid: https://orcid.org/0000-0002-1203-2670
affiliation: University of Padova, Department of Information Engineering, Padova,
Italy
email: [email protected]
- given-names: Maria
family-names: de la Iglesia
website: https://bimcv.cipf.es
orcid: https://orcid.org/0000-0003-4505-8399
affiliation: FISABIO, Join Unit Biomedical Imagin, Valencia, Valencia, 46006,
Spain
email: [email protected]
- given-names: Marie-Hélène
family-names: Bourget
website: https://github.com/mariehbourget
- given-names: Mark
family-names: Mikkelsen
website: https://vivo.weill.cornell.edu/display/cwid-mam4041
orcid: https://orcid.org/0000-0002-0349-3782
affiliation: Weill Cornell Medicine, Department of Radiology, New York, NY, 10021,
USA
email: [email protected]
- given-names: Markus
family-names: Morawski
orcid: https://orcid.org/0000-0002-3817-5186
affiliation: Universität Leipzig
- given-names: Marta
family-names: Bortoletto
orcid: https://orcid.org/0000-0002-8489-8043
affiliation: IRCCS Centro S Giovanni di Dio Fatebenefratelli
- given-names: Martin
family-names: Craig
- given-names: Martin
family-names: Noergaard
website: https://profiles.stanford.edu/martin-noergaard
orcid: https://orcid.org/0000-0003-2131-5688
affiliation: Stanford University, Department of Psychology, CA, 94304, USA
email: [email protected]
- given-names: Martin
family-names: Szinte
website: http://www.martinszinte.net
orcid: https://orcid.org/0000-0003-2040-4005
affiliation: CNRS, Institut des Neurosciences de la Timone, Marseille, 13008,
France
email: [email protected]
- given-names: Martin
family-names: Wilson
- given-names: Martina
family-names: Bulgari
orcid: https://orcid.org/0000-0003-1594-9617
affiliation: IRCCS Centro San Giovanni di Dio Fatebenefratelli
- given-names: Mateusz
family-names: Pawlik
website: https://github.com/mateuszpawlik
email: [email protected]
- given-names: Mathias
family-names: Goncalves
website: https://github.com/mgxd
orcid: https://orcid.org/0000-0002-7252-7771
affiliation: Psychology Department, Stanford University, Palo Alto, CA, 94305,
USA
email: [email protected]
- given-names: Mathieu
family-names: Boudreau
website: https://github.com/mathieuboudreau
orcid: https://orcid.org/0000-0002-7726-4456
affiliation: Polytechnique Montréal
- given-names: Matt
family-names: Sanderson
- given-names: Matteo
family-names: Tonietto
website: https://github.com/matteotonietto
orcid: https://orcid.org/0000-0001-9591-5710
affiliation: Hoffmann-La Roche Ltd, Research and Early Development, Basel, 4070,
Switzerland
- given-names: Matthias
family-names: Günther
- given-names: Matthias
family-names: Van Osch
- given-names: Maureen
family-names: J Shader
- given-names: Maurice
family-names: Pasternak
- given-names: Max A.
family-names: van den Boom
website: https://github.com/MaxvandenBoom
orcid: https://orcid.org/0000-0001-5481-1659
affiliation: Mayo Clinic, Department of neurosurgery, Rochester, MN, USA
email: [email protected]
- given-names: Melanie
family-names: Ganz-Benjaminsen
website: https://sites.google.com/view/melanieganz/home
orcid: https://orcid.org/0000-0002-9120-8098
affiliation: University of Copenhagen, Department of Computer Science, Copenhagen,
2100, Denmark
- given-names: Michael
family-names: Chappell
- given-names: Michael
family-names: Hanke
website: https://github.com/mih
- given-names: Michael P.
family-names: Harms
- given-names: Michael P.
family-names: Milham
- given-names: Michael P.
family-names: Notter
- given-names: Michael
family-names: Schirner
website: https://www.brainsimulation.org
orcid: https://orcid.org/0000-0001-8227-8476
affiliation: Charité—Universitätsmedizin Berlin, Department of Neurology, Berlin,
10115, Germany
email: [email protected]
- given-names: Mikaël
family-names: Naveau
website: https://www.cyceron.fr
orcid: https://orcid.org/0000-0002-4685-0057
affiliation: UAR3408-US50 CYCERON, Caen, 14000, France
- given-names: Nader
family-names: Pouratian
orcid: https://orcid.org/0000-0002-0426-3241
- given-names: Natalia
family-names: Petridou
orcid: https://orcid.org/0000-0002-0783-0387
affiliation: High Field Dpt, Center for Image Sciences, University Medical Center
Utrecht, 3584 CX Utrecht, NL
- given-names: National
family-names: Institute of Mental Health
- given-names: Nell
family-names: Hardcastle
website: https://github.com/nellh
orcid: https://orcid.org/0000-0002-3837-0707
- given-names: Nicholas
family-names: Traut
- given-names: Nick F.
family-names: Ramsey
- given-names: Nicole C.
family-names: Swann
- given-names: Nima
family-names: Bigdely Shamlo
orcid: https://orcid.org/0000-0001-6403-892X
- given-names: Olivier
family-names: David