forked from workflowscommunity/workflowscommunity.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmembers.yml
More file actions
1125 lines (924 loc) · 24 KB
/
members.yml
File metadata and controls
1125 lines (924 loc) · 24 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
- last_name: Ferreira da Silva
first_name: Rafael
institution: Oak Ridge National Laboratory
link: https://rafaelsilva.com
country: us
- last_name: Chard
first_name: Kyle
institution: University of Chicago
link: https://kylechard.com/
country: us
- last_name: Badia
first_name: Rosa M.
institution: Barcelona Supercomputing Center
link: https://www.bsc.es/badia-rosa-m
country: es
- last_name: Casanova
first_name: Henri
institution: University of Hawaii
link: https://henricasanova.github.io/
country: us
- last_name: Crusoe
first_name: Michael R.
link: https://orcid.org/0000-0002-2961-9670
country: de
- 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/
country: us
- last_name: Goble
first_name: Carole
institution: University of Manchester
link: https://www.research.manchester.ac.gb/portal/carole.goble.html
country: gb
- 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/
country: us
- last_name: Thain
first_name: Douglas
institution: University of Notre Dame
link: https://www3.nd.edu/~dthain/
country: us
- last_name: Katz
first_name: Daniel S.
institution: University of Illinois at Urbana-Champaign
link: https://danielskatz.org/
country: us
- last_name: Abramson
first_name: David
institution: University of Queensland, Australia
link: https://researchers.uq.edu.au/researcher/2986
country: au
- last_name: Altintaş
first_name: İlkay
institution: University of California San Diego
link: https://words.sdsc.edu/ilkay/
country: us
- last_name: Deelman
first_name: Ewa
institution: University of Southern California
link: https://deelman.isi.edu
country: us
- last_name: Di Natale
first_name: Frank
institution: Nvidia
link: https://frankd412.github.io/
country: us
- last_name: Di Tommaso
first_name: Paolo
institution: Seqera Labs
link: https://seqera.io/about/
country: es
- last_name: Erdmann
first_name: Christopher
link: https://www.agu.org/Learn-About-AGU/About-AGU/Data-Leadership
institution: American Geophysical Union
country: us
- last_name: Fahringer
first_name: Thomas
institution: University of Innsbruck
link: http://www.dps.uibk.ac.at/~tf/
country: at
- last_name: Filgueira
first_name: Rosa
institution: University of St Andrews
link: https://www.rosafilgueira.com/
country: gb
- last_name: Grüning
first_name: Björn
institution: University of Freiburg
link: https://orcid.org/0000-0002-3079-6586
country: de
- last_name: Jha
first_name: Shantenu
institution: Brookhaven National Laboratory
link: https://www.bnl.gov/staff/shantenu
country: us
- last_name: Leser
first_name: Ulf
institution: Humboldt University of Berlin
link: https://www2.informatik.hu-berlin.de/~leser/
country: de
- last_name: Mattoso
first_name: Marta
institution: Federal University of Rio de Janeiro
link: https://www.cos.ufrj.br/~marta/
country: br
- last_name: Peterson
first_name: J. Luc
institution: Lawrence Livermore National Laboratory
link: https://github.com/lucpeterson
country: us
- last_name: Wolf
first_name: Matthew
institution: Samsung Electronics
country: us
- last_name: Wozniak
first_name: Justin M.
institution: Argonne National Laboratory
link: https://www.mcs.anl.gov/~wozniak/
country: us
- last_name: Soiland-Reyes
first_name: Stian
institution: The University of Manchester
link: https://orcid.org/0000-0001-9842-9718
country: gb
- last_name: Stall
first_name: Shelley
institution: American Geophysical Union
link: https://www.agu.org/Learn-About-AGU/About-AGU/Data-Leadership
country: us
- last_name: Knight
first_name: Kathryn
institution: Oak Ridge National Laboratory
link: https://www.ornl.gov/staff-profile/kathryn-e-knight
country: us
- last_name: Wilkinson
first_name: Sean
institution: Oak Ridge National Laboratory
link: http://seanwilkinson.info
country: us
- last_name: Maheshwari
first_name: Ketan
institution: Oak Ridge National Laboratory
country: us
- last_name: Pottier
first_name: Loïc
institution: Lawrence Livermore National Laboratory
link: https://loicpottier.com
country: us
- last_name: Schneider
first_name: Juliane
institution: Sage Bionetworks
link: https://www.linkedin.com/in/juliane-schneider-4a06535/
country: us
- last_name: Sirvent
first_name: Raül
institution: Barcelona Supercomputing Center
link: https://personals.ac.upc.edu/rsirvent/
country: es
- last_name: Conejero
first_name: Javier
institution: Barcelona Supercomputing Center
link: https://www.bsc.es/conejero-francisco-javier
country: es
- last_name: Puigdemunt
first_name: Gabriel
institution: Barcelona Supercomputing Center
country: es
- last_name: Sun
first_name: Ziheng
institution: George Mason University
link: https://zihengsun.github.io
country: us
- last_name: Ozik
first_name: Jonathan
institution: Argonne National Laboratory
country: us
- last_name: Soranzo
first_name: Nicola
institution: Earlham Institute
link: https://www.earlham.ac.gb/nicola-soranzo
country: gb
- last_name: Irrgang
first_name: Eric
institution: University of Virginia
country: us
- last_name: Becker
first_name: Soeren
institution: Technical University of Berlin
country: de
- last_name: Mohammadi
first_name: Somayeh
institution: Freie University of Berlin
country: de
- last_name: De Mecquenem
first_name: Ninon
institution: Humboldt University Berlin
country: de
- last_name: Weidlich
first_name: Matthias
institution: Humboldt-Universität zu Berlin
link: http://hu.berlin/data
country: de
- last_name: Stolte
first_name: Hermann
institution: Humboldt University Berlin
link: hermannstolte.com
country: de
- last_name: Eberlein
first_name: Martin
institution: Humboldt-Universität zu Berlin
link: https://martineberlein.github.io
country: de
- last_name: Suter
first_name: Frédéric
institution: Oak Ridge National Laboratory
country: us
- last_name: Burel
first_name: Jean-Marie
institution: University of Dundee
country: gb
- last_name: Lehmann
first_name: Fabian
institution: Humboldt University of Berlin
link: https://fabian-lehmann.eu/
country: de
- last_name: Tovar
first_name: Ben
institution: University of Notre Dame
country: us
- last_name: Williams
first_name: Alan
institution: The University of Manchester
country: us
- last_name: Talirz
first_name: Leopold
institution: Microsoft
country: ch
link: https://ltalirz.github.io/
- last_name: Coppens
first_name: Frederik
institution: VIB
country: be
link: https://www.elixir-belgium.org/
- last_name: Collier
first_name: Nick
institution: Argonne National Laboratory
country: us
- last_name: Fernández
first_name: José María
institution: Barcelona Supercomputing Center / ELIXIR ES
country: es
- last_name: de Oliveira
first_name: Daniel
institution: Universidade Federal Fluminense
country: br
link: http://www.ic.uff.br/~danielcmo/
- last_name: Bader
first_name: Jonathan
institution: Technical University of Berlin
country: de
- last_name: Keller
first_name: Trevor
institution: NIST
country: us
link: trevorkeller.com
- last_name: Middelkoop
first_name: Timothy
institution: Internet2
country: us
link: https://spaces.at.internet2.edu/display/RE/Timothy+Middelkoop
- last_name: Thamsen
first_name: Lauritz
institution: University of Glasgow
country: gb
link: https://lauritzthamsen.org/
- last_name: Balis
first_name: Bartosz
institution: AGH University of Science and Technology
country: pl
- last_name: Grubel
first_name: Patricia
institution: Los Alamos National Laboratory
country: us
- last_name: James
first_name: Chela
institution: Institute of Child Health
country: gb
- last_name: Kohar
first_name: Vivek
institution: Flagship Labs 75
country: us
- last_name: Stracquadanio
first_name: Giovanni
institution: University of Edinburgh
country: gb
link: www.stracquadaniolab.org
- last_name: Lazaris
first_name: Charalampos
institution: Whitehead Institute/Broad Institute of MIT and Harvard
country: us
link: https://chlazaris.github.io/
- last_name: Surana
first_name: Priyanka
institution: Wellcome Sanger Institute
country: gb
- last_name: Laney
first_name: Daniel
institution: Lawrence Livermore National Laboratory
country: us
- last_name: Gourneau
first_name: Joshua
institution: Guardant Health
country: us
link: http://josh.gourneau.com
- last_name: Cobb
first_name: John
institution: Prospero Knowledge Brokers
country: us
link: https://scholar.google.com/citations?user=teHs36cAAAAJ&hl=en
- last_name: Brunk
first_name: Paul
institution: University of Georgia
country: us
- last_name: Coleman
first_name: Tainã
institution: University of Southern California
country: us
link: https://tainacoleman.com
- last_name: Rahman
first_name: Mubdi
institution: Sidrat Research
country: ca
link: http://www.mubdirahman.com/
- last_name: Chen
first_name: Yanni
institution: Texas Tech University
country: us
- last_name: Talia
first_name: Domenico
institution: Università della Calabria
country: it
link: https://scholar.google.it/citations?hl=it&user=0RMjJHMAAAAJ
- last_name: Paehler
first_name: Ludger
institution: Technical University of Munich
country: de
link: https://ludgerpaehler.github.io
- last_name: Tripathy
first_name: Aalap
institution: Hewlett Packard Enterprise
country: us
link: http://www.aalap.info
- last_name: Malawski
first_name: Maciej
institution: AGH University of Science and Technology
country: pl
- last_name: Viviani
first_name: Paolo
institution: LINKS Foundation
country: it
link: https://paoloviviani.github.io
- last_name: Vitali
first_name: Giacomo
institution: LINKS Foundation
country: it
- last_name: Colonnelli
first_name: Iacopo
institution: University of Torino
country: it
link: https://alpha.di.unito.it/iacopo-colonnelli/
- last_name: Scionti
first_name: Alberto
institution: LINKS Foundation
country: it
- last_name: Hannon
first_name: Kevin
institution: NIH
country: us
- last_name: Amstutz
first_name: Peter
institution: Curii
country: us
- last_name: Lampa
first_name: Samuel
institution: Savantic AB
country: se
link: https://rillabs.org
- last_name: Senanayake
first_name: Dinindu
institution: New Zealand eScience Infrastructure
country: nz
- last_name: Witzke
first_name: Joel
institution: Zuse Institute Berlin
country: de
- last_name: Casella
first_name: Bruno
institution: University of Turin
country: it
link: casellajr.github.io
- last_name: Medic
first_name: Doriana
institution: University of Turin
country: it
- last_name: Nash
first_name: Rupert
institution: The University of Edinburgh
country: gb
- last_name: Mittone
first_name: Gianluca
institution: University of Turin
country: it
link: https://alpha.di.unito.it/gianluca-mittone/
- last_name: Robila
first_name: Stefan
institution: Montclair State University
country: us
link: https://www.montclair.edu/profilepages/view_profile.php?username=robilas
- last_name: Ohta
first_name: Tazro
institution: Database Center for Life Science
country: jp
link: https://github.com/inutano
- last_name: Naouar
first_name: Naira
institution: Sorbonne Universite
country: fr
- last_name: Ward
first_name: Heather
institution: DNAstack
country: ca
link: heatherward.dev
- last_name: Pedratscher
first_name: Stefan
institution: University of Innsbruck
country: at
- last_name: Aznar
first_name: Juan
institution: University of Innsbruck
country: at
- last_name: Gustafsson
first_name: Johan
institution: University of Melbourne
country: au
- last_name: Rowell
first_name: William
institution: Pacific Biosciences
country: us
link: http://wjrowell.info
- last_name: Köster
first_name: Johannes
institution: University of Duisburg-Essen
country: de
link: https://johanneskoester.bitbucket.io/
- last_name: Roozmeh
first_name: Mehdi
institution: Karlsruhe Institute of Technology
country: de
- last_name: Kondov
first_name: Ivan
institution: Karlsruhe Institute of Technology
country: de
link: https://www.scc.kit.edu/en/staff/ivan.kondov.php
- last_name: Solorzano
first_name: Ana
institution: Northeastern University
country: us
- last_name: Martinelli
first_name: Alberto Riccardo
institution: University of Turin
country: it
- last_name: Cunningham
first_name: Will
institution: Agnostiq
country: ca
link: https://willcunningham.net
- last_name: Chatzipantsiou
first_name: Christina
institution: Lifebit
country: gb
link: https://github.com/cgpu
- last_name: Johansson
first_name: Annika
institution: Columbia University
country: us
- last_name: Mays
first_name: Jennifer
institution: Columbia University
country: us
- last_name: Gadelha
first_name: Luiz
institution: National Laboratory for Scientific Computing
country: br
link: https://www.lncc.br/~lgadelha
- last_name: Le Viet
first_name: Thanh
institution: Quadram Institute Bioscience
country: gb
link: https://github.com/thanhleviet
- last_name: de Paula Kinoshita
first_name: Bruno
institution: Barcelona Supercomputing Center
country: es
link: https://twitter.com/kinow
- last_name: Kanwal
first_name: Sehrish
institution: The University of Melbourne
country: au
link: https://www.linkedin.com/in/dr-sehrish-kanwal-1b80bb42/
- last_name: Skluzacek
first_name: Tyler
institution: Oak Ridge National Lab
country: us
link: http://tylerskluzacek.com/
- last_name: Gibbs
first_name: Tom
institution: Nvidia
country: us
link: https://www.linkedin.com/in/tom-gibbs-9485ab1
- last_name: Gotz
first_name: Andy
institution: ESRF
country: fr
- last_name: Ristov
first_name: Sashko
institution: University of Innsbruck
country: at
link: https://qe-informatik.uibk.ac.at/team/?doctors=sashko-ristov
- last_name: Mosbergen
first_name: Rowland
institution: WEHI
country: au
- last_name: Vilaça
first_name: Ricardo
institution: MACC
country: pt
link: https://rmpvilaca.github.io/
- last_name: Souza
first_name: Renan
institution: Oak Ridge National Laboratory
country: us
link: https://renansouza.org
- last_name: Ribeiro-Dantas
first_name: Marcel
institution: Seqera Labs
country: br
link: https://mribeirodantas.xyz
- last_name: Caino-Lores
first_name: Silvina
institution: University of Tennessee
country: us
- last_name: Simpson
first_name: Christine
institution: ALCF
country: us
- last_name: Mehta
first_name: Kshitij
institution: Oak Ridge National Laboratory
country: us
- last_name: Chigu
first_name: Justin
institution: Egypt Japan University of Science and Technology
country: eg
- last_name: Gallo
first_name: Andrew
institution: GE Research
country: us
link: https://518computing.com/
- last_name: Buckley
first_name: Ian
institution: Agnostiq
country: ca
- last_name: Ejarque
first_name: Jorge
institution: Barcelona Supercomputing Center
country: es
link: https://www.bsc.es/ejarque-jorge
- last_name: Burt
first_name: Forrest
institution: CIQ
country: us
link: forrestburt.com
- last_name: Kougkas
first_name: Anthony
institution: Illinois Institute of Technology
country: us
link: https://akougkas.com/
- last_name: Pawlik
first_name: Maciej
institution: AGH University of Science and Technology
country: pl
- last_name: Sparks
first_name: Jonathan
institution: HPE
country: us
- last_name: Kremer-Herman
first_name: Nate
institution: Seattle University
country: us
- last_name: Chan
first_name: Steve
institution: Lawrence Berkeley National Lab
country: us
- last_name: Romano
first_name: Paul
institution: Argonne National Laboratory
country: us
link: https://github.com/paulromano
- last_name: Rosa Braghetto
first_name: Kelly
institution: University of São Paulo
country: br
- last_name: Elwasif
first_name: Wael
institution: Oak Ridge National Laboratory
country: us
- last_name: Saurabh
first_name: Nishant
institution: Utrecht University
country: nl
link: https://www.uu.nl/staff/NSaurabh
- last_name: Tyler
first_name: Nick
institution: NERSC
country: us
- last_name: Vivas
first_name: Aurelio
institution: Universidad de los Andes
country: co
link: https://www.linkedin.com/in/aureavm/?locale=en_US
- last_name: Pouchard
first_name: Line
institution: Brookhaven National Lab
country: us
link: https://www.bnl.gov/staff/pouchard
- last_name: Balouek-Thomert
first_name: Daniel
institution: University of Utah
country: us
link: https://daniel-balouek.com
- last_name: Papadimitriou
first_name: George
institution: University of Southern California
country: us
link: https://georgpap.com
- last_name: Savchenko
first_name: Volodymyr
institution: EPFL
country: ch
link: https://volodymyrsavchenko.com/
- last_name: Sussman
first_name: Alan
institution: University of Maryland
country: us
- last_name: Turilli
first_name: Matteo
institution: Rutgers University
country: us
- last_name: Durillo
first_name: Juan J.
institution: Leibniz Supercomputing Centre
country: de
- last_name: Rannow
first_name: Randy K
institution: Silverdraft
country: us
- last_name: Kiliç
first_name: Erkan
institution: Constraction
country: tr
link: http://erkankilic.com/
- last_name: Wohlgemuth
first_name: Jason
institution: Oak Ridge National Laboratory
country: us
link: https://www.ornl.gov/staff-profile/jason-h-wohlgemuth
- last_name: Grisales-Vargas
first_name: Cristian
institution: University of Antioquia
country: co
link: https://github.com/biocdgv
- last_name: Ghafouri
first_name: Saeid
institution: Queen Mary University of London
country: gb
link: https://www.linkedin.com/in/saeid-ghafouri/
- last_name: Okoniewski
first_name: Michal
institution: ETH Zurich
country: ch
link: https://github.com/michalogit
- last_name: Matsuda
first_name: Motohiko
institution: RIKEN R-CCS
country: jp
- last_name: Sovacool
first_name: Kelly
institution: University of Michigan
country: us
link: https://sovacool.dev
- last_name: Muhammad
first_name: Naeem
institution: KU Leuven University
country: be
- last_name: Shih
first_name: Liwen
institution: U of Houston - Clear Lake
country: us
link: https://www.linkedin.com/in/liwen-shih-%E6%96%BD%E9%BA%97%E7%B4%8B-08263b33/
- last_name: Downton
first_name: Matthew
institution: NCI Australia
country: au
- last_name: Zulfiqar
first_name: Mahnoor
institution: Friedrich Schiller University Jena
country: de
- last_name: Pigot
first_name: Simon
institution: CSIRO
country: au
- last_name: McBride
first_name: Chris
institution: HPE - Cray
country: us
- last_name: Saurav
first_name: Sumit Kumar
institution: Centre for Development of Advanced Computing
country: in
- last_name: Antonio
first_name: Vicente
institution: AIEP
country: cl
- last_name: Pradal
first_name: Christophe
institution: CIRAD & Inria
country: fr
- last_name: Marozzo
first_name: Fabrizio
institution: University of Calabria
country: it
link: https://scalab.dimes.unical.it/marozzo/
- last_name: Widener
first_name: Patrick
institution: Oak Ridge National Laboratory
country: us
- last_name: Rosen
first_name: Andrew
institution: Princeton University
country: us
link: https://cbe.princeton.edu/people/andrew-rosen
- last_name: Duan
first_name: Dawn
institution: Northwestern University
country: us
link: https://jdawnduan.com/
- last_name: Alam
first_name: Mohsin
institution: Netsol Technologies
country: pk
- last_name: Zhu
first_name: Ruijie
institution: Northwestern University
country: us
link: https://ruijiezhu.us
- last_name: Marquez
first_name: Jack
institution: University of Tennessee
country: us
link: https://www.linkedin.com/in/jack-marquez/
- last_name: Sparks
first_name: Jonathan
institution: HPE
country: us
- last_name: Seinen
first_name: Clint
institution: The Canadian Centre for Climate Modelling and Analysis
country: ca
- last_name: Shao
first_name: Andrew
institution: HPE
country: ca
- last_name: Ganose
first_name: Alex
institution: Imperial College London
country: gb
link: https://virtualatoms.org
- last_name: Titov
first_name: Mikhail
institution: Brookhaven National Laboratory
country: us
link: https://www.bnl.gov/staff/mtitov
- last_name: Pritchard
first_name: Howard
institution: Los Alamos National Laboratory
country: us
- last_name: Hudson
first_name: Stephen
institution: Argonne National Laboratory
country: us
link: https://github.com/shuds13
- last_name: Tallent
first_name: Nathan
institution: Pacific Northwest National Laboratory
country: us
link: https://hpc.pnnl.gov/people/tallent/
- last_name: Garijo
first_name: Daniel
institution: Universidad Politécnica de Madrid
country: es
link: https://dgarijo.com
- last_name: Bhattarai
first_name: Rajat
intitution: Tennessee Tech University
country: us
link: https://rajatbhattarai.com.np/
- last_name: Aloqalaa