forked from bids-standard/bids-specification
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCITATION.cff
More file actions
1801 lines (1791 loc) · 68 KB
/
CITATION.cff
File metadata and controls
1801 lines (1791 loc) · 68 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
# 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.11.2-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: adamt@nih.gov
- 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: adeen@nyu.edu
- 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: adina.wagner@t-online.de
- given-names: Agah
family-names: Karakuzu
website: https://agahkarakuzu.github.io
orcid: https://orcid.org/0000-0001-7283-271X
email: agahkarakuzu@gmail.com
- given-names: Agnese
family-names: Zazio
orcid: https://orcid.org/0000-0002-1395-9005
affiliation: IRCCS Istituto Centro San Giovanni di Dio Fatebenefratelli
email: agnese.zazio@cognitiveneuroscience.it
- 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
orcid: https://orcid.org/0000-0002-8688-581X
- given-names: Alejandro
family-names: de la Vega
website: https://github.com/adelavega
orcid: https://orcid.org/0000-0001-9062-3778
affiliation: The University of Texas at Austin
- 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: aprockhill@mailbox.org
- 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: alexander.cohen2@childrens.harvard.edu
- given-names: Alexander
family-names: von Lautz
orcid: https://orcid.org/0000-0002-2852-8363
- given-names: Alexandre
family-names: D'Astous
website: https://github.com/po09i
orcid: https://orcid.org/0000-0003-0381-7334
email: po09i@hotmail.com
- 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: alexandre.gramfort@inria.fr
- given-names: Alexandre
family-names: Hutton
orcid: https://orcid.org/0000-0002-7661-686X
- 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: alizee.wickenheiser@mcin.ca
- given-names: Alyssa
family-names: Dai
orcid: https://orcid.org/0000-0003-0174-6800
affiliation: McGill University
email: alyssa.ydai@gmail.com
- given-names: Amber R.
family-names: Hopkins
orcid: https://orcid.org/0000-0002-8354-565X
affiliation: Department of Psychology, University of California Los Angeles, Los Angeles, California, United States
email: amber.neuro@gmail.com
- given-names: Ana
family-names: Fouto
- given-names: Anders
family-names: Eklund
website: https://github.com/wanderine
- given-names: Andrea
family-names: Pigorini
orcid: https://orcid.org/0000-0002-1856-3413
affiliation: University of Milan
- given-names: Andrew
family-names: Hoopes
- given-names: Andrew
family-names: Jahn
- given-names: Andrew
family-names: Janke
website: http://apjanke.net
email: andrew@apjanke.net
- given-names: Anibal
family-names: Sólon
website: https://anibalsolon.com/
orcid: https://orcid.org/0000-0002-2050-0614
email: anibalsolon@gmail.com
- given-names: Anthony
family-names: Galassi
website: https://github.com/bendhouseart
orcid: https://orcid.org/0000-0001-6550-4574
email: anthony.galassi@nih.gov
- given-names: Arianna
family-names: Sala
website: https://www.coma.uliege.be/people/arianna-sala/
orcid: https://orcid.org/0000-0001-8121-0891
affiliation: université de Liège, Belgium
email: arianna.sala@uliege.be
- 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: arokem@uw.edu
- given-names: Arjen
family-names: Stolk
orcid: https://orcid.org/0000-0003-3798-4923
- given-names: Arman
family-names: Jahanpour
orcid: https://orcid.org/0009-0008-5034-7535
affiliation: origami lab, McGill university, Montreal, Québec, Canada
email: armanjahanpour7@gmail.com
- 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: adelorme@ucsd.edu
- 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: International Institute of Information Technology Bangalore
email: arshitha.basavaraj@iiitb.ac.in
- given-names: Ashley G.
family-names: Gillman
website: https://github.com/ashgillman
orcid: https://orcid.org/0000-0001-9130-1092
affiliation: CSIRO
- 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: Augustijn
family-names: Vrolijk
website: https://github.com/AugustijnVrolijk
orcid: https://orcid.org/0000-0001-8629-4465
- 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. Nolan
family-names: Nichols
orcid: https://orcid.org/0000-0003-1099-3328
affiliation: Altos Labs
- given-names: Balint
family-names: Kincses
orcid: https://orcid.org/0000-0002-0478-6384
email: balint.kincses@uk-essen.de
- given-names: Benjamin
family-names: Beasley
website: https://github.com/musicinmybrain
orcid: https://orcid.org/0009-0002-6936-5959
- given-names: Benjamin
family-names: Dichter
website: https://bendichter.com/
orcid: https://orcid.org/0000-0001-5725-6910
affiliation: CatalystNeuro
email: ben.dichter@catalystneuro.com
- 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: Boris
family-names: Clénet
website: https://github.com/bclenet
orcid: https://orcid.org/0009-0006-7727-5100
affiliation: Univ Rennes, Inria, CNRS, Inserm
- 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: Brent
family-names: McPherson
orcid: https://orcid.org/0000-0001-8378-8136
affiliation: origami lab, McGill university, Montreal, Québec, Canada
email: bcmcpher@gmail.com
- given-names: Brett L.
family-names: Foster
orcid: https://orcid.org/0000-0002-2621-5574
affiliation: University of Pennsylvania
- given-names: Brian A.
family-names: Wandell
orcid: https://orcid.org/0000-0002-2974-1836
affiliation: Stanford University
- given-names: Brian N.
family-names: Lundstrom
orcid: https://orcid.org/0000-0002-5310-5549
affiliation: Mayo Clinic
- 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
email: camille.maumet@inria.fr
- given-names: Carlo
family-names: Miniussi
orcid: https://orcid.org/0000-0002-5436-4745
affiliation: University of Trento
email: carlo.miniussi@unitn.it
- given-names: Cecile
family-names: Madjar
orcid: https://orcid.org/0000-0003-1108-031X
affiliation: LORIS, MCIN, Montreal Neurological Institute, McGill University
email: cecile.madjar@mcin.ca
- 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: krzysztof.gorgolewski@gmail.com
- 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: crorden6@gmail.com
- 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: chr@chymera.eu
- given-names: Christine
family-names: Rogers
website: https://github.com/christinerogers
orcid: https://orcid.org/0000-0002-9893-8448
affiliation: McGill Centre for Integrative Neuroscience, Montreal Neurological Institute
email: christine.rogers@mcgill.ca
- 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: c.phillips@uliege.be
- given-names: Christopher G.
family-names: Schwarz
website: https://github.com/CGSchwarzMayo
orcid: https://orcid.org/0000-0002-1466-8357
affiliation: Mayo Clinic Rochester
email: schwarz.christopher@mayo.edu
- 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
orcid: https://orcid.org/0000-0002-6533-164X
affiliation: Stanford University
email: effigies@gmail.com
- given-names: Christopher
family-names: Lee-Messer
orcid: https://orcid.org/0000-0002-2938-6184
affiliation: Stanford University
- given-names: Clara
family-names: Moreau
orcid: https://orcid.org/0000-0001-6217-731X
affiliation: University of Montreal
- given-names: Clint
family-names: Hansen
affiliation: Kiel University
email: c.hansen@neurologie.uni-kiel.de
- given-names: Cody
family-names: Baker
website: https://codycbakerphd.com
orcid: https://orcid.org/0000-0002-0829-4790
affiliation: Dartmouth College, Center for Open Neuroscience
- 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: wamcyril@gmail.com
- 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: ceierud@gsu.edu
- given-names: D.
family-names: Sturgeon
website: https://dasturge.github.io
- given-names: Dan
family-names: Brady
orcid: https://orcid.org/0000-0003-4671-0676
affiliation: Research Software Engineering Team, University of Sheffield
email: daniel.brady@sheffield.ac.uk
- 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: dlevitas@iu.edu
- given-names: Dan
family-names: Lurie
website: https://github.com/danlurie
orcid: https://orcid.org/0000-0001-8420-8252
affiliation: University of Liverpool
- given-names: Daniel A.
family-names: Handwerker
orcid: https://orcid.org/0000-0001-7261-4042
affiliation: National Institute of Mental Health
- given-names: Daniel
family-names: McCloy
website: https://dan.mccloy.info
orcid: https://orcid.org/0000-0002-7572-3241
affiliation: University of Washington
- 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: dboas@bu.edu
- 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: david.m.groppe@gmail.com
- 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
email: dejan.draschkow@psy.ox.ac.uk
- given-names: Desmond
family-names: Oathes
orcid: https://orcid.org/0000-0001-7346-2669
affiliation: The University of Pennsylvania
email: oathes@pennmedicine.upenn.edu
- 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: dkp@arizona.edu
- given-names: Dimitri
family-names: Papadopoulos Orfanos
website: https://github.com/DimitriPapadopoulos
orcid: https://orcid.org/0000-0002-1242-8990
- given-names: Dmitry
family-names: Petrov
orcid: https://orcid.org/0000-0003-0445-3923
- given-names: Dora
family-names: Hermes
website: https://github.com/dorahermes
orcid: https://orcid.org/0000-0002-8683-8909
affiliation: Mayo Clinic
email: dorahermes@gmail.com
- given-names: Dorien
family-names: Huijser
website: https://github.com/DorienHuijser
orcid: https://orcid.org/0000-0003-3282-8083
affiliation: Utrecht University
- given-names: Dorota
family-names: Jarecka
website: https://www.linkedin.com/in/djarecka
orcid: https://orcid.org/0000-0001-8282-2988
affiliation: MIT, Cambridge, USA
email: djarecka@mit.edu
- given-names: Douglas N.
family-names: Greve
website: https://github.com/dngreve
orcid: https://orcid.org/0000-0002-0610-0155
- given-names: Duncan
family-names: Macleod
- given-names: Dung
family-names: Truong
website: https://github.com/dungscout96
orcid: https://orcid.org/0000-0003-4540-3551
affiliation: Swartz Center for Computational Neuroscience
email: dutruong@ucsd.edu
- given-names: Dustin
family-names: Moraczewski
orcid: https://orcid.org/0000-0002-0422-3135
email: dustin.moraczewski@nih.gov
- 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
orcid: https://orcid.org/0000-0002-1966-3643
- 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
orcid: https://orcid.org/0000-0002-2343-7761
affiliation: Saarland University
email: elke.warmerdam@uni-saarland.de
- given-names: Erdal
family-names: Karaca
website: https://github.com/erdalkaraca
email: erdal.karaca.de@gmail.com
- 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: eric.earl@nih.gov
- given-names: Eric
family-names: Achten
website: https://github.com/rikAchten
orcid: https://orcid.org/0000-0002-5148-4178
- given-names: Eric
family-names: Bridgeford
orcid: https://orcid.org/0000-0001-6115-719X
- given-names: Erin W.
family-names: Dickie
website: http://imaging-genetics.camh.ca/
orcid: https://orcid.org/0000-0003-3028-9864
- 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: eduff@imperial.ac.uk
- given-names: Ezequiel
family-names: Mikulan
orcid: https://orcid.org/0000-0001-7259-6120
affiliation: University of Milan
- given-names: Fede
family-names: Raimondo
website: https://fraimondo.github.io
orcid: https://orcid.org/0000-0003-4087-8259
affiliation: Forschungszentrum Jülich
email: f.raimondo@fz-juelich.de
- given-names: Felipe
family-names: Orihuela-Espina
orcid: https://orcid.org/0000-0001-8963-7283
affiliation: University of Birmingham
- given-names: Fidel
family-names: Alfaro Almagro
orcid: https://orcid.org/0000-0002-9133-5951
affiliation: University of Oxford
- given-names: Filip
family-names: Szczepankiewicz
orcid: https://orcid.org/0000-0002-5251-587X
affiliation: Lund University
email: filip.szczepankiewicz@med.lu.se
- 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: castelli@lens.unifi.it
- given-names: Franco
family-names: Pestilli
website: https://liberalarts.utexas.edu/psychology/faculty/fp4834
orcid: https://orcid.org/0000-0002-2469-0494
affiliation: The University of Texas at Austin
email: pestilli@utexas.edu
- 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: Friederike
family-names: Breuer
orcid: https://orcid.org/0000-0002-3020-6590
affiliation: Johannes-Gutenberg University Medical Center, Mainz Germany
email: fbreuer@uni-mainz.de
- 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: gangchen@mail.nih.gov
- 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: Berenson-Allen Center for Noninvasive Brain Stimulation, Beth Israel Deaconess Medical Center and Harvard Medical School, Boston, MA, USA, Department of Neurology, Harvard Medical School, Boston, MA, USA
email: giacomofirst@gmail.com
- 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: mazzamuto@lens.unifi.it
- given-names: Gilles
family-names: de Hollander
website: https://github.com/Gilles86
orcid: https://orcid.org/0000-0003-1988-5091
- given-names: Gio
family-names: Piantoni
- given-names: Giovanna
family-names: Nordio
email: giovanna.nordio@kcl.ac.uk
- given-names: Gitte M.
family-names: Knudsen
orcid: https://orcid.org/0000-0002-3983-0541
affiliation: Novonesis
- given-names: Giulio
family-names: Castegnaro
- given-names: Giuseppe
family-names: Gallitto
orcid: https://orcid.org/0000-0001-5185-0206
affiliation: Essen University Hospital
email: giuseppe.gallitto@uk-essen.de
- given-names: Graham
family-names: Searle
orcid: https://orcid.org/0000-0001-6923-7645
email: Graham.Searle@invicro.co.uk
- given-names: Granville J.
family-names: Matheson
website: http://www.granvillematheson.com
orcid: https://orcid.org/0000-0002-5646-4547
affiliation: Columbia University
- 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
orcid: https://orcid.org/0009-0000-4906-3246
affiliation: Stanford University
- given-names: Greydon
family-names: Gilmore
website: http://greydongilmore.com
orcid: https://orcid.org/0000-0001-7523-5734
email: ggilmore@uwo.ca
- 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: Guiomar
family-names: Niso
website: http://guiomarniso.com
orcid: https://orcid.org/0000-0001-5872-8924
affiliation: Spanish National Research Council (CSIC)
email: guiomar.niso@cajal.csic.es
- 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: gustav.nilsonne@ki.se
- 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: hain@eriksholm.com
- 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: hanne.d.hansen@nru.dk
- 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: htwangtw@gmail.com
- given-names: Helena
family-names: Cockx
website: https://github.com/helenacockx
orcid: https://orcid.org/0000-0001-7782-7178
affiliation: Radboud University
email: helena.cockx@donders.ru.nl
- 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: h.j.mutsaerts@amsterdamumc.nl
- given-names: Hernando
family-names: Ombao
orcid: https://orcid.org/0000-0001-7020-8091
affiliation: King Abdullah University of Science and Technology (KAUST)
- given-names: Hugo
family-names: Boniface
website: https://github.com/Hboni
orcid: https://orcid.org/0000-0002-0454-3294
email: hugoboniface@gmail.com
- 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
orcid: https://orcid.org/0000-0002-5644-2057
- 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: Isaac
family-names: To
website: https://github.com/candleindark
orcid: https://orcid.org/0000-0002-4740-0824
affiliation: Center for Open Neuroscience at Dartmouth College
- given-names: Isla
family-names: Staden
orcid: https://orcid.org/0000-0002-0795-1154
- given-names: Jaap
family-names: von der Aar
orcid: https://orcid.org/0000-0001-6387-5144
- given-names: Jacob
family-names: Sanz-Robinson
orcid: https://orcid.org/0000-0002-7611-5598
affiliation: origami lab, McGill university, Montreal, Québec, Canada
email: jacob.sanz-robinson@mail.mcgill.ca
- 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
email: GholamJA@cardiff.ac.uk
- given-names: James
family-names: Kent
website: https://github.com/jdkent
email: jamesdkent21@gmail.com
- 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: jm.schoffelen@gmail.com
- 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: j.petr@hzdr.de
- given-names: Jan
family-names: Valosek
website: https://janvalosek.com
orcid: https://orcid.org/0000-0002-8080-6041
- given-names: Jan-Mathijs
family-names: Schoffelen
orcid: https://orcid.org/0000-0003-0923-6610
- given-names: Jean-Baptiste
family-names: Poline
website: https://github.com/jbpoline
orcid: https://orcid.org/0000-0002-9794-749X
- given-names: Jean-Charles
family-names: Mariani
website: https://jcmariani.github.io/
orcid: https://orcid.org/0000-0003-1943-1591
affiliation: Italian Institute of Technology, Rovereto, Trentino, Italy
email: jean-charles.mariani@cri-paris.org
- 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: jean.christophe.houde@gmail.com
- 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: jean-dominique.gallezot@yale.edu
- 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/
orcid: https://orcid.org/0000-0002-0926-3531
affiliation: Stanford, Department of Psychology, Stanford, CA
- given-names: Jefferson
family-names: Casimir
website: https://github.com/jeffersoncasimir
orcid: https://orcid.org/0009-0004-4706-0331
affiliation: McGill Centre for Integrative Neuroscience, Montreal Neurological Institute, McGill University
- given-names: Jeffrey G.
family-names: Ojemann
orcid: https://orcid.org/0000-0001-7580-8934
affiliation: Seattle Childrens Hospital
- given-names: Jeffrey S.
family-names: Grethe
website: http://profiles.ucsd.edu/jeffrey.grethe
orcid: https://orcid.org/0000-0001-5212-7052
affiliation: University of California San Diego
- 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: j.r.dalenberg@umcg.nl
- given-names: Jeremy
family-names: Moreau
- given-names: Jessica A.
family-names: Turner
orcid: https://orcid.org/0000-0003-0076-8434
affiliation: The Ohio State University Wexner Medical Center
- 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: jochem.rieger@uni-oldenburg.de
- 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
orcid: https://orcid.org/0000-0001-7106-2661
affiliation: SDU
- 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: jon.haitz.legarreta@gmail.com
- given-names: Jonathan C.
family-names: Lau
orcid: https://orcid.org/0000-0002-8452-8915
affiliation: Western University
- given-names: Jonathan
family-names: Winawer
website: https://github.com/JWinawer
orcid: https://orcid.org/0000-0001-7475-5586
affiliation: New York University
- 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: jpa.kuijer@amsterdamumc.nl
- given-names: Jose
family-names: Manuel Saborit
orcid: https://orcid.org/0000-0002-2445-6075
affiliation: Fundació per al Foment de la Investigació Sanitària i Biomèdica
- 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: joseph.woods@ndcn.ox.ac.uk
- 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: julia.sprenger@univ-amu.fr
- given-names: Julia-Katharina
family-names: Pfarr
website: https://github.com/julia-pfarr
orcid: https://orcid.org/0000-0003-1450-6005
affiliation: McGill University
email: juliakatharina.pfarr@gmail.com
- 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: Julio
family-names: C Hernandez Pavon
orcid: https://orcid.org/0000-0001-6130-169X
affiliation: Kansas State University
email: julio.hpavon@gmail.com
- given-names: Julius
family-names: Welzel
website: https://github.com/JuliusWelzel
orcid: https://orcid.org/0000-0001-8958-0934
affiliation: Kiel University
email: julius.welzel@gmail.com
- given-names: Jérémie
family-names: Fouquet
website: https://github.com/jeremie-fouquet
orcid: https://orcid.org/0000-0001-6815-7037
email: jeremie.fouquet2@gmail.com
- given-names: Kabilar
family-names: Gunalan
website: https://github.com/kabilar
orcid: https://orcid.org/0000-0001-6964-4865
- given-names: Kai J.
family-names: Miller
orcid: https://orcid.org/0000-0002-6687-6422
affiliation: Mayo Clinic
- 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: kay.robbins@utsa.edu
- given-names: Kevin
family-names: Larcher
- given-names: Kimberly
family-names: Ray
orcid: https://orcid.org/0000-0003-1302-2834
affiliation: UT Austin
email: kimberlylray@gmail.com
- given-names: Kirstie
family-names: Whitaker
website: https://whitakerlab.github.io
orcid: https://orcid.org/0000-0001-8498-4059
affiliation: University of Cambridge
email: kwhitaker@turing.ac.uk
- 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
orcid: https://orcid.org/0000-0003-2673-1832
affiliation: Technical University Berlin
email: klaus.gramann@tu-berlin.de
- 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: kristofer.bouchard@gmail.com
- given-names: Kurt
family-names: Schilling
website: https://github.com/schillkg