-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathmembers.yml
More file actions
1454 lines (1128 loc) · 34.7 KB
/
members.yml
File metadata and controls
1454 lines (1128 loc) · 34.7 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
- country: Australia
entries:
- last_name: Abramson
first_name: David
institution: University of Queensland, Australia
link: https://researchers.uq.edu.au/researcher/2986
- last_name: Gustafsson
first_name: Johan
institution: University of Melbourne
- last_name: Kanwal
first_name: Sehrish
institution: The University of Melbourne
link: https://www.linkedin.com/in/dr-sehrish-kanwal-1b80bb42/
- last_name: Mosbergen
first_name: Rowland
institution: WEHI
- last_name: Downton
first_name: Matthew
institution: NCI Australia
- last_name: Pigot
first_name: Simon
institution: CSIRO
- last_name: Dakle
first_name: Pushkar
institution: Monash University
link: https://github.com/pd321
- last_name: Uddin
first_name: Aleem
institution: Australian Research Data Commons
link: www.linkedin.com/in/aleem1uddin
- last_name: Khan
first_name: Farah Zaib
institution: Australian BioCommons
- last_name: Lupat
first_name: Richard
institution: Peter MacCallum Cancer Centre
- last_name: Dudley
first_name: Kevin
institution: Queensland University of Technology
- last_name: Russel
first_name: ABM
institution: Monash University
- country: Austria
entries:
- last_name: Fahringer
first_name: Thomas
institution: University of Innsbruck
link: http://www.dps.uibk.ac.at/~tf/
- last_name: Pedratscher
first_name: Stefan
institution: University of Innsbruck
- last_name: Aznar
first_name: Juan
institution: University of Innsbruck
- last_name: Ristov
first_name: Sashko
institution: University of Innsbruck
link: https://qe-informatik.uibk.ac.at/team/?doctors=sashko-ristov
- last_name: Gritsch
first_name: Philipp
institution: University of Innsbruck
link: https://www.linkedin.com/in/philippgritsch/
- last_name: Farahani
first_name: Reza
institution: University of Klagenfurt
link: https://www.linkedin.com/in/reza-farahani/
- country: Belgium
entries:
- last_name: Coppens
first_name: Frederik
institution: VIB
link: https://www.elixir-belgium.org/
- last_name: Waroquiers
first_name: David
institution: Matgenix
link: https://matgenix.com/
- last_name: Muhammad
first_name: Naeem
institution: KU Leuven University
- country: Brazil
entries:
- last_name: Mattoso
first_name: Marta
institution: Federal University of Rio de Janeiro
link: https://www.cos.ufrj.br/~marta/
- last_name: de Oliveira
first_name: Daniel
institution: Universidade Federal Fluminense
link: http://www.ic.uff.br/~danielcmo/
- last_name: Ribeiro-Dantas
first_name: Marcel
institution: Seqera Labs
link: https://mribeirodantas.xyz
- last_name: Rosa Braghetto
first_name: Kelly
institution: University of São Paulo
- last_name: Piêgas Koslovski
first_name: Guilherme
institution: Santa Catarina State University - UDESC
link: http://gkoslovski.github.io
- last_name: Souza
first_name: Fabio
institution: Petrobras
- last_name: Irber
first_name: Luiz
institution: sourmash.bio
link: https://luizirber.org
- last_name: Pina
first_name: Débora
institution: Federal University of Rio de Janeiro
- last_name: Momm Duarte
first_name: Luis Antonio
institution: Universidade do Estado de Santa Catarina
- country: Canada
entries:
- last_name: Rahman
first_name: Mubdi
institution: Sidrat Research
link: http://www.mubdirahman.com/
- last_name: Ward
first_name: Heather
institution: DNAstack
link: heatherward.dev
- last_name: Cunningham
first_name: Will
institution: Agnostiq
link: https://willcunningham.net
- last_name: Buckley
first_name: Ian
institution: Agnostiq
- last_name: Seinen
first_name: Clint
institution: The Canadian Centre for Climate Modelling and Analysis
- last_name: Shao
first_name: Andrew
institution: HPE
- country: Chile
entries:
- last_name: Antonio
first_name: Vicente
institution: AIEP
- country: Colombia
entries:
- last_name: Vivas
first_name: Aurelio
institution: Universidad de los Andes
link: https://www.linkedin.com/in/aureavm/?locale=en_US
- last_name: Grisales-Vargas
first_name: Cristian
institution: University of Antioquia
link: https://github.com/biocdgv
- country: Egypt
entries:
- last_name: Chigu
first_name: Justin
institution: Egypt Japan University of Science and Technology
- last_name: Ali
first_name: Amr
institution: October University for Modern Sciences & Arts
- country: Finland
entries:
- last_name: Alonen
first_name: Miika
institution: CSC - IT Center for Science
- country: France
entries:
- last_name: Naouar
first_name: Naira
institution: Sorbonne Universite
- last_name: Gotz
first_name: Andy
institution: ESRF
- last_name: Caino-Lores
first_name: Silvina
institution: INRIA
- last_name: Pradal
first_name: Christophe
institution: CIRAD & Inria
- last_name: BERTI-EQUILLE
first_name: Laure
institution: IRD
link: https://laureberti.github.io/website/
- last_name: Shorte
first_name: Spencer
institution: Institut Pasteur
link: https://research.pasteur.fr/en/center/c2rt/
- last_name: Georgiou
first_name: Yiannis
institution: Ryax Technologies
- last_name: Belhajjame
first_name: Khalid
institution: PSL, Paris Dauphine University
link: https://sites.google.com/site/kbelhajjame/
- last_name: NDAMLABIN
first_name: Etienne
institution: Inria
- last_name: Kunwar
first_name: Abhikeern
institution: CNRS
- last_name: NYATSIKOR
first_name: Renate
institution: IRISA-University of Rennes
- country: Germany
entries:
- last_name: Crusoe
first_name: Michael R.
institution: Common Workflow Language
link: https://orcid.org/0000-0002-2961-9670
- last_name: Grüning
first_name: Björn
institution: University of Freiburg
link: https://orcid.org/0000-0002-3079-6586
- last_name: Leser
first_name: Ulf
institution: Humboldt University of Berlin
link: https://www2.informatik.hu-berlin.de/~leser/
- last_name: Becker
first_name: Soeren
institution: Technical University of Berlin
- last_name: Mohammadi
first_name: Somayeh
institution: Freie University of Berlin
- last_name: De Mecquenem
first_name: Ninon
institution: Humboldt University Berlin
- last_name: Weidlich
first_name: Matthias
institution: Humboldt-Universität zu Berlin
link: http://hu.berlin/data
- last_name: Stolte
first_name: Hermann
institution: Humboldt University Berlin
link: hermannstolte.com
- last_name: Eberlein
first_name: Martin
institution: Humboldt-Universität zu Berlin
link: https://martineberlein.github.io
- last_name: Lehmann
first_name: Fabian
institution: Humboldt University of Berlin
link: https://fabian-lehmann.eu/
- last_name: Bader
first_name: Jonathan
institution: Technical University of Berlin
- last_name: Paehler
first_name: Ludger
institution: Technical University of Munich
link: https://ludgerpaehler.github.io
- last_name: Witzke
first_name: Joel
institution: Zuse Institute Berlin
- last_name: Köster
first_name: Johannes
institution: University of Duisburg-Essen
link: https://johanneskoester.bitbucket.io/
- last_name: Roozmeh
first_name: Mehdi
institution: Karlsruhe Institute of Technology
- last_name: Kondov
first_name: Ivan
institution: Karlsruhe Institute of Technology
link: https://www.scc.kit.edu/en/staff/ivan.kondov.php
- last_name: Durillo
first_name: Juan J.
institution: Leibniz Supercomputing Centre
- last_name: Zulfiqar
first_name: Mahnoor
institution: Friedrich Schiller University Jena
- last_name: Rybicki
first_name: Jedrzej
institution: Forschungszentrum Juelich GmbH
- last_name: Momin
first_name: Saim
institution: Max Planck Institute of Immunobiology and Epigenetics, Freiburg
link: https://www.linkedin.com/in/saim-momin/
- last_name: Lazik
first_name: Christopher
institution: Humboldt-Universität zu Berlin
- last_name: Rêgo
first_name: Celso
institution: Karlsruhe Institute of Technology
- last_name: Gruber
first_name: Lorenz
institution: University of Wuerzburg
link: https://se.informatik.uni-wuerzburg.de/software-engineering-group/staff/lorenz-gruber/
- last_name: Herbst
first_name: Nikolas
institution: University of Würzburg
link: https://go.uni-wuerzburg.de/herbst
- last_name: Kounev
first_name: Samuel
institution: University of Würzburg
link: https://se.informatik.uni-wuerzburg.de/software-engineering-group/staff/samuel-kounev/
- last_name: Correa
first_name: Alan Jason
institution: RWTH Aachen University
- last_name: Schaarschmidt
first_name: Jörg
institution: Karlsruher Institute of Technology
link: https://www.int.kit.edu/1632_5482.php
- last_name: Kummer
first_name: Felix
institution: Humboldt-Universität zu Berlin
- last_name: Weber
first_name: Thomas
institution: EMBL
- last_name: Kwon
first_name: Hyeokjin
institution: University of Potsdam
- last_name: Waseda
first_name: Sam
institution: Max-Planck-Institute for sustainable materials
- last_name: Thomas
first_name: Laurent
institution: EMBL Heidelberg
- last_name: Chilakalapudi
first_name: Prabhath
institution: Max Planck Institute for Sustainable Materials
- last_name: Janssen
first_name: Jan
institution: Max-Planck-Institute for Sustainable Materials
link: https://jan-janssen.com
- last_name: Peters-von Gehlen
first_name: Karsten
institution: German Climate Computing Center (DKRZ)
link: https://www.dkrz.de/en/about-en/staff/dr-karsten-peters?set_language=en
- last_name: Gadelha
first_name: Luiz
institution: Heidelberg University
link: https://orcid.org/0000-0002-8122-9522?
- country: India
entries:
- last_name: Swain
first_name: Chinmaya Kumar
institution: SRM University, AP
link: https://srmap.edu.in/faculty/chinmaya-kumar-swain/
- last_name: Saurav
first_name: Sumit Kumar
institution: Centre for Development of Advanced Computing
- last_name: Ongolu
first_name: Lakshmi
institution: University of New Hampshire
- country: Italy
entries:
- last_name: Talia
first_name: Domenico
institution: Università della Calabria
link: https://scholar.google.it/citations?hl=it&user=0RMjJHMAAAAJ
- last_name: Viviani
first_name: Paolo
institution: LINKS Foundation
link: https://paoloviviani.github.io
- last_name: Vitali
first_name: Giacomo
institution: LINKS Foundation
- last_name: Colonnelli
first_name: Iacopo
institution: University of Torino
link: https://alpha.di.unito.it/iacopo-colonnelli/
- last_name: Scionti
first_name: Alberto
institution: LINKS Foundation
- last_name: Casella
first_name: Bruno
institution: University of Turin
link: casellajr.github.io
- last_name: Medic
first_name: Doriana
institution: University of Turin
- last_name: Mittone
first_name: Gianluca
institution: University of Turin
link: https://alpha.di.unito.it/gianluca-mittone/
- last_name: Martinelli
first_name: Alberto Riccardo
institution: University of Turin
- last_name: Marozzo
first_name: Fabrizio
institution: University of Calabria
link: https://scalab.dimes.unical.it/marozzo/
- last_name: Montella
first_name: Raffaele
institution: University of Naples "Parthenope"
link: https://raffaelemontella.it
- last_name: Di Luccio
first_name: Diana
institution: University of Naples "Parthenope"
- last_name: De Vita
first_name: Ciro
institution: University of Naples "Parthenope"
- last_name: Alidu
first_name: Abubakari
institution: University of Milano Bicocca
- last_name: Fiore
first_name: Sandro
institution: University of Trento
link: https://www.linkedin.com/in/sandro-fiore-ph-d-080ba38/
- last_name: Hossain
first_name: Abrar
institution: The University of Toledo
link: https://abrarhossainhimself.github.io/
- country: Japan
entries:
- last_name: Ohta
first_name: Tazro
institution: Database Center for Life Science
link: https://github.com/inutano
- last_name: Matsuda
first_name: Motohiko
institution: RIKEN R-CCS
- last_name: Pornmaneerattanatri
first_name: Soratouch
institution: RIKEN R-CCS
- country: Latvia
entries:
- last_name: Vilne
first_name: Baiba
institution: Rīga Stradiņš University
link: https://www.rsu.lv/en/bioinformatics-group
- last_name: Vartina
first_name: Edite
institution: Riga Stradins University
- country: New Zealand
entries:
- last_name: Senanayake
first_name: Dinindu
institution: New Zealand eScience Infrastructure
- last_name: Behr
first_name: Yannik
institution: GNS Science
- country: Netherlands
entries:
- last_name: Dolas
first_name: Sagar
institution: SURF - Dutch ICT Cooperative for Education & Research
- last_name: Saurabh
first_name: Nishant
institution: Utrecht University
link: https://www.uu.nl/staff/NSaurabh
- last_name: Wang
first_name: Yuandou
institution: University of Amsterdam
- last_name: Mei
first_name: Leon
institution: Leiden University Medical Center
- last_name: Lutz
first_name: Kristen
institution: SURF
- last_name: Loffredo
first_name: Layla
institution: SURF
- country: Pakistan
entries:
- last_name: Alam
first_name: Mohsin
institution: Netsol Technologies
- country: Poland
entries:
- last_name: Balis
first_name: Bartosz
institution: AGH University of Science and Technology
- last_name: Malawski
first_name: Maciej
institution: AGH University of Science and Technology
- last_name: Pawlik
first_name: Maciej
institution: AGH University of Science and Technology
- country: Portugal
entries:
- last_name: Vilaça
first_name: Ricardo
institution: MACC
link: https://rmpvilaca.github.io/
- last_name: Vaz
first_name: Sofia
institution: Instituto de Telecomunicações (Aveiro)
link: https://www.it.pt/Members/Index/42533?memberUsername=svaz
- country: Spain
entries:
- last_name: Badia
first_name: Rosa M.
institution: Barcelona Supercomputing Center
link: https://www.bsc.es/badia-rosa-m
- last_name: Di Tommaso
first_name: Paolo
institution: Seqera Labs
link: https://seqera.io/about/
- last_name: Sirvent
first_name: Raül
institution: Barcelona Supercomputing Center
link: https://personals.ac.upc.edu/rsirvent/
- last_name: Conejero
first_name: Javier
institution: Barcelona Supercomputing Center
link: https://www.bsc.es/conejero-francisco-javier
- last_name: Puigdemunt
first_name: Gabriel
institution: Barcelona Supercomputing Center
- last_name: Fernández
first_name: José María
institution: Barcelona Supercomputing Center / ELIXIR ES
- last_name: de Paula Kinoshita
first_name: Bruno
institution: Barcelona Supercomputing Center
link: https://twitter.com/kinow
- last_name: Ejarque
first_name: Jorge
institution: Barcelona Supercomputing Center
link: https://www.bsc.es/ejarque-jorge
- last_name: Garijo
first_name: Daniel
institution: Universidad Politécnica de Madrid
link: https://dgarijo.com
- last_name: Capella-Gutierrez
first_name: Salvador
institution: Barcelona Supercomputing Center
- last_name: Giménez de Castro Marciani
first_name: Manuel
institution: Barcelona Supercomputing Center
- last_name: Liu
first_name: Peini
institution: Barcelona Supercomputing Center
link: https://scholar.google.com/citations?user=MIziCVsAAAAJ&hl
- last_name: Sanchez Gallegos
first_name: Dante Domizzi
institution: University Carlos III of Madrid
link: https://ddomizzisg.github.io/
- country: Sweden
entries:
- last_name: Lampa
first_name: Samuel
institution: Savantic AB
link: https://rillabs.org
- last_name: Abdi
first_name: Somayeh
institution: Mälardalen university
- last_name: Jordan
first_name: Joe
institution: Uppsala University
- country: Switzerland
entries:
- last_name: Talirz
first_name: Leopold
institution: Microsoft
link: https://ltalirz.github.io/
- last_name: Savchenko
first_name: Volodymyr
institution: EPFL
link: https://volodymyrsavchenko.com/
- last_name: Okoniewski
first_name: Michal
institution: ETH Zurich
link: https://github.com/michalogit
- last_name: Kanitz
first_name: Alex
institution: Biozentrum, University of Basel
- last_name: Geiger
first_name: Julian
institution: Paul-Scherrer Institut
- country: Turkey
entries:
- last_name: Kiliç
first_name: Erkan
institution: Constraction
link: http://erkankilic.com/
- country: United Kingdom
entries:
- last_name: Goble
first_name: Carole
institution: University of Manchester
link: https://www.research.manchester.ac.gb/portal/carole.goble.html
- last_name: Filgueira
first_name: Rosa
institution: EPCC, University of Edinburgh
link: https://www.rosafilgueira.com/
- last_name: Soiland-Reyes
first_name: Stian
institution: The University of Manchester
link: https://orcid.org/0000-0001-9842-9718
- last_name: Soranzo
first_name: Nicola
institution: Earlham Institute
link: https://www.earlham.ac.gb/nicola-soranzo
- last_name: Burel
first_name: Jean-Marie
institution: University of Dundee
- last_name: Thamsen
first_name: Lauritz
institution: University of Glasgow
link: https://lauritzthamsen.org/
- last_name: James
first_name: Chela
institution: Institute of Child Health
- last_name: Stracquadanio
first_name: Giovanni
institution: University of Edinburgh
link: www.stracquadaniolab.org
- last_name: Surana
first_name: Priyanka
institution: Wellcome Sanger Institute
- last_name: Nash
first_name: Rupert
institution: The University of Edinburgh
- last_name: Chatzipantsiou
first_name: Christina
institution: Lifebit
link: https://github.com/cgpu
- last_name: Le Viet
first_name: Thanh
institution: Quadram Institute Bioscience
link: https://github.com/thanhleviet
- last_name: Ghafouri
first_name: Saeid
institution: Queen Mary University of London
link: https://www.linkedin.com/in/saeid-ghafouri/
- last_name: Ganose
first_name: Alex
institution: Imperial College London
link: https://virtualatoms.org
- last_name: Aloqalaa
first_name: Meznah
institution: University of Manchester
- last_name: Missier
first_name: Paolo
institution: Newcastle University
link: https://sites.google.com/site/paolomissier/
- last_name: Muffato
first_name: Matthieu
institution: Wellcome Sanger Institute
link: https://muffato.github.io/
- last_name: Quinn
first_name: Paul
institution: STFC Scientific Computing
- last_name: Tso
first_name: Michael
institution: UK Centre for Ecology & Hydrology
link: https://cmtso.github.io/
- last_name: Kamieniecka
first_name: Katarzyna
institution: University of Bradford
link: https://www.bradford.ac.uk/staff/kkamieniecka/
- last_name: Poterlowicz
first_name: Krzysztof
institution: University of Bradford
link: https://www.bradford.ac.uk/staff/kpoterlowicz1/
- last_name: Gonzalez Beltran
first_name: Alejandra
institution: UK Atomic Energy Authority
link: https://agbeltran.github.io/
- last_name: Liborio
first_name: Leandro
institution: Science and Technology Facilities Council
link: https://leandro-liborio.github.io/
- last_name: Alvarez-Jarreta
first_name: Jorge
institution: EMBL-EBI
link: https://www.ebi.ac.uk/people/person/jorge-alvarez-jarreta/
- last_name: Beracochea
first_name: Martin
institution: EMBL-EBI
link: https://www.mberacochea.cc
- last_name: Andrews
first_name: Robert
institution: Cardiff University
link: https://profiles.cardiff.ac.uk/staff/andrewsr9
- last_name: Seitz
first_name: Philipp
institution: Quantinuum
- country: United States
entries:
- last_name: Ferreira da Silva
first_name: Rafael
institution: Oak Ridge National Laboratory
link: https://rafaelsilva.com
- last_name: Chard
first_name: Kyle
institution: University of Chicago
link: https://kylechard.com/
- last_name: Casanova
first_name: Henri
institution: University of Hawaii
link: https://henricasanova.github.io/
- last_name: Enders
first_name: Björn
institution: National Energy Research Scientific Computing Center
link: https://www.nersc.gov/about/nersc-staff/data-science-engagement-group/bjoern-enders/
- last_name: Ramakrishnan
first_name: Lavanya
institution: Lawrence Berkeley National Laboratory
link: https://crd.lbl.gov/divisions/scidata/about-scidata/scidata-staff/office-of-the-director/lavanya-ramakrishnan/
- last_name: Thain
first_name: Douglas
institution: University of Notre Dame
link: https://www3.nd.edu/~dthain/
- last_name: Katz
first_name: Daniel S.
institution: University of Illinois at Urbana-Champaign
link: https://danielskatz.org/
- last_name: Altintaş
first_name: İlkay
institution: University of California San Diego
link: https://words.sdsc.edu/ilkay/
- last_name: Deelman
first_name: Ewa
institution: University of Southern California
link: https://deelman.isi.edu
- last_name: Di Natale
first_name: Frank
institution: Nvidia
link: https://frankd412.github.io/
- last_name: Erdmann
first_name: Christopher
link: https://www.agu.org/Learn-About-AGU/About-AGU/Data-Leadership
institution: American Geophysical Union
- last_name: Jha
first_name: Shantenu
institution: Brookhaven National Laboratory
link: https://www.bnl.gov/staff/shantenu
- last_name: Peterson
first_name: J. Luc
institution: Lawrence Livermore National Laboratory
link: https://github.com/lucpeterson
- last_name: Wolf
first_name: Matthew
institution: Samsung Electronics
- last_name: Wozniak
first_name: Justin M.
institution: Argonne National Laboratory
link: https://www.mcs.anl.gov/~wozniak/
- last_name: Stall
first_name: Shelley
institution: American Geophysical Union
link: https://www.agu.org/Learn-About-AGU/About-AGU/Data-Leadership
- last_name: Knight
first_name: Kathryn
institution: Oak Ridge National Laboratory
link: https://www.ornl.gov/staff-profile/kathryn-e-knight
- last_name: Wilkinson
first_name: Sean
institution: Oak Ridge National Laboratory
link: http://seanwilkinson.info
- last_name: Maheshwari
first_name: Ketan
institution: Oak Ridge National Laboratory
- last_name: Pottier
first_name: Loïc
institution: Lawrence Livermore National Laboratory
link: https://loicpottier.com
- last_name: Schneider
first_name: Juliane
institution: Sage Bionetworks
link: https://www.linkedin.com/in/juliane-schneider-4a06535/
- last_name: Sun
first_name: Ziheng
institution: George Mason University
link: https://zihengsun.github.io
- last_name: Ozik
first_name: Jonathan
institution: Argonne National Laboratory
- last_name: Irrgang
first_name: Eric
institution: University of Virginia
- last_name: Suter
first_name: Frédéric
institution: Oak Ridge National Laboratory
link: https://fred-suter.com/
- last_name: Tovar
first_name: Ben
institution: University of Notre Dame
- last_name: Williams
first_name: Alan
institution: The University of Manchester
- last_name: Collier