-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhiball.html
938 lines (847 loc) · 41 KB
/
hiball.html
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
<!doctype html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZSP3HV4M1C"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZSP3HV4M1C');
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-145481065-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-145481065-1');
</script>
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta name="author" content="Derek Lo @ 3design-dlo.com">
<!-- general -->
<link rel="stylesheet" type="text/css" href="slick/slick.css">
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css">
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<link rel="stylesheet" type="text/css" href="css/nav-styles.css" />
<link rel="stylesheet" type="text/css" href="fonts/fonts.css" />
<link href="css/lightbox.css" rel="stylesheet" />
<meta charset="utf-8">
<title>the BigBrain</title>
<meta name="viewport" content="width=device-width">
<meta name="description" content="This is the website of the BigBrain Project.">
<meta name="keywords" content="Neuro, Brain, Research, Big Data, Science, Medicine">
<script src="https://code.jquery.com/jquery-2.2.0.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/drop-down.js"></script>
<script src="js/jquery.matchHeight.js" type="text/javascript"></script>
<script src="slick/slick.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</head>
<body>
<div id="main-wrapper">
<div class="social-media">
<a href="https://www.youtube.com/@bigbrainproject" class="tooltip">
<i class="fab fa-youtube"></i>
<span class="tooltiptext">Youtube</span>
</a>
<a href="https://twitter.com/BigBrainProject" class="tooltip">
<i class="fab fa-x-twitter"></i>
<span class="tooltiptext">X</span>
</a>
<a href="https://www.linkedin.com/company/bigbrainproject?trk=public_post_feed-actor-name" class="tooltip">
<i class="fa-brands fa-linkedin-in"></i>
<span class="tooltiptext">linkedin</span>
</a>
<a href="mailto:[email protected]" class="tooltip">
<i class="fas fa-envelope-square"></i>
<span class="tooltiptext">Email</span>
</a>
<a href="#main-wrapper" class="tooltip">
<i class="fas fa-arrow-up"></i>
<span class="tooltiptext">Top</span>
</a>
</div>
<!-- navigation -->
<nav class="site-nav">
<div class="brand-border-1"></div>
<div class="brand-border-2"></div>
<div class="brand-border-3"></div>
<div class="nav-container">
<div class="branding"><a href="index.html">BigBrain Project</a></div>
<div id="showmenu">Menu</div>
<ul id="menu" class="nav-list hide">
<li class="nav-item"><a href="#!" class="active"><strong>HIBALL</strong></a>
<ul class="nav-dropdown">
<li><a href="hiball.html" class="active">About Hiball</a></li>
<li><a href="board.html">Boards</a></li>
<li><a href="partners.html">Partners</a></li>
<li><a href="publications.html">Publications</a></li>
</ul>
</li>
<li class="nav-item"><a href="#!">About</a>
<ul class="nav-dropdown">
<li><a href="about.html">About Us</a></li>
<li><a href="about.html#FAQ">FAQ</a></li>
<li><a href="press.html">Press</a></li>
<li><a href="references.html">References</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</li>
<li class="nav-item"><a href="maps-and-models.html">Maps & Models</a></li>
<li class="nav-item"><a href="tools-and-services.html">Tools & Services</a></li>
<li class="nav-item"><a href="#!">Community</a>
<ul class="nav-dropdown">
<li><a href="community.html">Our Community</a></li>
<li><a href="news.html">News & Events</a></li>
<li><a href="featured.html">Featured</a></li>
<li><a href="https://forum.bigbrainproject.org/">Forum</a></li>
<li><a href="careers.html">Careers</a></li>
</ul>
</li>
</ul>
</div>
<div class="clear-all"></div>
</nav>
<!-- intro section -->
<section class="hero hiball-bg">
<div class="grid-container">
<div class="hero-content-grid">
<div class="hero-content-container">
<a class="hero-logos-link-2" href="hiball.html">
<img src="images/logo-hiball.png">
</a>
<p>HIBALL is the funding umbrella for the BigBrain Project. It aims to transform the successful collaboration between McGill (MNI, BIC) and Forschungszentrum Jülich (INM, JSC) to the next level by reinforcing utilization and co-development of the latest AI and high-performance computing (HPC) technologies for building highly detailed 3D brain models. It establishes a close collaboration with CIFAR and MILA in Canada, and Helmholtz AI in Germany.</p>
<!-- <a href="sab.html">Scientific Advisory Board</a> -->
<div class="hero-logos">
<div class="flex-center">
<a class="hero-logos-link" href="https://www.fz-juelich.de/">
<img src="images/logo-julich.png">
</a>
<a class="hero-logos-link" href="https://mcgill.ca/">
<img src="images/logo-mcgill.png">
</a>
<a class="hero-logos-link" href="https://www.helmholtz.de/en/ ">
<img src="images/logo-helmholtz.png">
</a>
<a class="hero-logos-link" href="https://www.mcgill.ca/hbhl/">
<img src="images/logo-hbhl.png">
</a>
</div>
</div>
<div class="clear-all"></div>
</div>
</div>
</div>
</section>
<!-- partners section -->
<section class="lt-grey-bg">
<div class="section-content lt-grey-bg flex">
<h1 class="full-width text-center">BigBrain Partners</h1>
<h2 class="full-width text-center">How to contact the partners</h2>
<div class="contact-card">
<img src="images/julich.jpg" class="centre-pic">
<img src="images/logo-julich.jpg">
<address>Structural and functional organisation of the brain</address>
<address><a href="https://www.fz-juelich.de/en/inm/inm-1">INM-1</a></address>
<address><a href="https://www.fz-juelich.de/portal/EN/Home/home_node.html">Forschungszentrum Jülich</a>
</address>
<address>52425 Jülich, Germany</address>
</div>
<div class="contact-card">
<img src="images/mcgill.jpg" class="centre-pic">
<img src="images/logo-mcgill.png">
<address><a href="https://mcin.ca">McGill Centre for Integrative Neuroscience</a></address>
<address><a href="https://mcgill.ca">McGill University</a></address>
<address>845 Sherbrooke St W</address>
<address>Montreal, QC, Canada</address>
<address>H3A 0G4</address>
</div>
</div>
</section>
<div class="clear-all"></div>
<!-- HIBALL teams -->
<!-- team section -->
<section class="med-grey-bg end">
<div class="section-content no-side-pad max100 med-grey-bg">
<h1 class="full-width text-center">HIBALL team</h1>
<h2 class="full-width text-center spacer">People contributing to the BigBrainProject</h2>
<div class="mosaic">
<img src="images/profile-katrin-amunts.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/amunts_k">Katrin Amunts</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/profile-alan-evans.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small"><a href="https://mcin.ca/about-mcin/alans-cv/">Alan Evans</a></div>
<a href="http://mcin.ca">McGill Centre for Integrative Neuroscience (MCIN)</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-rezaa.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Reza Adalat</div>
<a href="http://mcin.ca">McGill Centre for Integrative Neuroscience (MCIN)</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-axer.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href=" https://www.fz-juelich.de/profile/axer_m">Markus Axer</a> </div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-bakhtiari.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small"><a href="https://sites.google.com/mila.quebec/linc-lab/team/shahab?authuser=0 ">Shahab Bakhtiari</a></div>
<a href="https://sites.google.com/mila.quebec/linc-lab/home">Learning in Neural Circuits Lab</a><br>
McGill University / MILA
</div>
</div>
<!-- <div class="mosaic">
<img src="images/team/team-barakat.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.linkedin.com/in/chadisamibarakat/">Chadi Barakat</a></div>
<a href="https://www.fz-juelich.de/en/ias/jsc" class="">Jülich Supercomputing Centre (JSC)</a><br>
Forschungszentrum Jülich
</div>
</div> -->
<div class="mosaic">
<img src="images/team/profile-temp2.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://www.fz-juelich.de/de/inm/inm-7/additional-profiles/m-sc-seyma-bayrak">Şeyma Bayrak</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-7">Institute for Neuroscience and Medicine, Brain and Behaviour (INM-7)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-benkarim.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Oualid Benkarim</div>
<a href="http://mica-mni.github.io/ ">Multimodal Imaging and Connectome Analysis (MICA) Lab </a><br>
McGill Universty
</div>
</div>
<div class="mosaic">
<img src="images/team/team-bernhardt.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small"><a href="https://www.mcgill.ca/neuro/boris-bernhardt-phd">Boris Bernhardt</a></div>
<a href="http://mica-mni.github.io/ ">Multimodal Imaging and Connectome Analysis (MICA) Lab </a><br>
McGill Universty
</div>
</div>
<div class="mosaic">
<img src="images/team/team-bludau.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href=" https://www.fz-juelich.de/profile/bludau_s">Sebastian Bludau</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-louis.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://www.linkedin.com/in/louis-borgeat-33a60673/?originalSubdomain=ca ">Louis Borgeat</a></div>
<a href="https://nrc.canada.ca/en/research-development/research-collaboration/research-centres/digital-technologies-research-centre ">Digital Technologies at National Research Council Canada (NRC)</a>
</div>
</div>
<div class="mosaic">
<img src="images/team/profile-temp2.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Jorge Bosch-Bayard</div>
<a href="https://mcin.ca">McGill Centre for Integrative Neuroscience (MCIN)</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-brandstetter.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://www.fz-juelich.de/profile/brandstetter_a">Andrea Brandstetter</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-collins.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://www.mcgill.ca/neuro/louis-collins-phd ">Louis Collins</a></div>
<a href="http://nist.mni.mcgill.ca/" class="">NeuroImaging & Surgical Technologies (NIST) Lab</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-jordan.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Jordan DeKraker</div>
<a href="https://mcin.ca">McGill Centre for Integrative Neuroscience (MCIN)</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-dickscheid.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/dickscheid_t">Timo Dickscheid</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<!-- <div class="mosaic">
<img src="images/team/team-eick.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/eick_c">Charlotta Eick</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div> -->
<div class="mosaic">
<img src="images/team/team-eickhoff.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/en/inm/inm-7/research-groups/systems-medicine">Simon Eickhoff</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-7">Institute for Neuroscience and Medicine, Brain and Behaviour (INM-7)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-thomas.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://childmind.org/bio/thomas-funck-phd/">Thomas Funck</a></div>
<a href="https://childmind.org/science/fundamental-neuroscience/center-developing-brain/">Center for the Developing Brain</a><br>
Child Mind Institute
</div>
</div>
<div class="mosaic">
<img src="images/team/team-tristan.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://users.encs.concordia.ca/~tglatard/">Tristan Glatard</a></div>
<a href="https://big-data-lab-team.github.io/">Big Data Infrastructures for Neuroinformatics lab</a><br>
Concordia University
</div>
</div>
<!-- <div class="mosaic">
<img src="images/team/team-daviti.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/gogshelidze_d">Daviti Gogshelidze</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div> -->
<div class="mosaic">
<img src="images/team/team-xiao.jpeg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/gui_x">Xiao Gui</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-justine.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Justine Hansen</div>
<a href="https://netneurolab.github.io/">Network Neuroscience Lab</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-valerie.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small">Valerie Hayot-Sasson </div>
<a href="https://big-data-lab-team.github.io/">Big Data Infrastructures for Neuroinformatics lab</a><br>
Concordia University
</div>
</div>
<!-- <div class="mosaic">
<img src="images/team/team-helgi.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.linkedin.com/in/peturhelgi">Petur Helgi</a></div>
<a href="https://www.fz-juelich.de/en/ias/jsc" >Jülich Supercomputing Centre (JSC)</a><br>
Forschungszentrum Jülich
</div>
</div> -->
<div class="mosaic">
<img src="images/team/profile-temp2.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/hettwer_m">Meike Hettwer</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-7">Institute for Neuroscience and Medicine, Brain and Behaviour (INM-7)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-paquola.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/huysegoms_c">Casey Huysegoms</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-7">Institute for Neuroscience and Medicine, Brain and Behaviour (INM-7)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-huysegoms.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/huysegoms_m">Marcel Huysegoms</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-yasser.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small"><a href="https://www.mcgill.ca/neuro/yasser-iturria-medina">Yasser Iturria-Medina</a></div>
<a href="http://www.neuropm-lab.com/">Neuroinformatics for Personalized Medicine (NeuroPM) Lab</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-sherri.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Sherri L. Jones</div>
<a href="https://rimuhc.ca/" class="">Research Institute of the McGill University Health Centre (RI-MUHC)</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-khan.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://www.khanlab.ca/">Ali Khan</a></div>
Robarts Research Institute <br>
Western University
</div>
</div>
<!-- <div class="mosaic">
<img src="images/team/team-kiwitz.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://www.researchgate.net/profile/Kai-Kiwitz ">Kai Kiwitz</a></div>
<a href="https://www.uniklinik-duesseldorf.de/en/cecile-and-oskar-vogt-institute-of-brain-research">Cécile and Oskar Vogt Institute of Brain Research</a><br>
Heinrich Heine University Düsseldorf
</div>
</div>
-->
<div class="mosaic">
<img src="images/team/team-kropp.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://www.fz-juelich.de/profile/kropp_j">Jan-Oliver Kropp</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<!-- <div class="mosaic">
<img src="images/team/team-kuechenhoff.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small">Svenja Kuechenhoff</div>
<a href="https://www.fz-juelich.de/en/inm/inm-7">Institute for Neuroscience and Medicine, Brain and Behaviour (INM-7)</a><br>
Forschungszentrum Jülich
</div>
</div> -->
<div class="mosaic">
<img src="images/team/team-lariviere.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Sara Lariviere</div>
<a href="http://mica-mni.github.io/">Multimodal Imaging and Connectome Analysis (MICA) Lab</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/profile-temp2.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Claude Lepage</div>
<a href="https://mcin.ca">McGill Centre for Integrative Neuroscience (MCIN)</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-llewis.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Lindsay B. Lewis</div>
<a href="https://mcin.ca">McGill Centre for Integrative Neuroscience (MCIN)</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-li.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small"><a href="https://mila.quebec/en/person/xuan-li/">Xuan Li</a></div>
<a href="https://www.cs.mcgill.ca/">School of Computer Science, McGill University</a><br>
<a href="https://mila.quebec/">MILA</a><br>
</div>
</div>
<div class="mosaic">
<img src="images/team/team-lippert.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/lippert_th">Thomas Lippert</a></div>
<a href="https://www.fz-juelich.de/en/ias/jsc" class="">Jülich Supercomputing Centre (JSC)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-liu.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small"><a href="https://mila.quebec/en/person/xue-liu/">Xue Liu</a></div>
<a href="https://www.cs.mcgill.ca/">School of Computer Science, McGill University</a><br>
<a href="https://mila.quebec/">MILA</a><br>
</div>
</div>
<div class="mosaic">
<img src="images/team/profile-temp2.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Derek Lo</div>
<a href="https://mcin.ca">McGill Centre for Integrative Neuroscience (MCIN)</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/profile-temp2.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small">Philippe Massicotte</div>
<a href="https://nrc.canada.ca/en/research-development/research-collaboration/research-centres/digital-technologies-research-centre">Digital Technologies at National Research Council Canada (NRC)</a>
</div>
</div>
<div class="mosaic">
<img src="images/team/team-magielse.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://www.fz-juelich.de/profile/magielse_n">Neville Magielse</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-7">Institute for Neuroscience and Medicine, Brain and Behaviour (INM-7)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-shahbaz.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small">Mohammad Shahbaz Memon</div>
<a href="https://www.fz-juelich.de/en/ias/jsc " class="">Jülich Supercomputing Centre (JSC)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-bratislav.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small"><a href="https://www.mcgill.ca/neuro/bratislav-misic-phd">Bratislav Mišić</a></div>
<a href="https://netneurolab.github.io/">Network Neuroscience Lab</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/profile-temp2.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/mohlberg_h">Hartmut Mohlberg</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<!-- <div class="mosaic">
<img src="images/team/team-sascha.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/muenzing_s">Sascha Münzing</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div> -->
<div class="mosaic">
<img src="images/team/team-meiqi.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://www.fz-juelich.de/profile/niu_m">Meiqi Niu</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-alex.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/oberstrass_a">Alexander Oberstraß</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-mona.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Mona Omidyeganeh</div>
<a href="https://mcin.ca">McGill Centre for Integrative Neuroscience (MCIN)</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-palomero.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/en/inm/inm-1/research/receptors">Nicola Palomero-Gallagher</a> </div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-precup.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small"><a href="https://www.cs.mcgill.ca/~dprecup/ ">Doina Precup</a></div>
<a href="https://www.cs.mcgill.ca/" class="">School of Computer Science</a><br>
McGill University / MILA
</div>
</div>
<div class="mosaic">
<img src="images/team/team-richards.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small"><a href="https://sites.google.com/mila.quebec/linc-lab/team/blake?authuser=0 ">Blake Richards</a></div>
<a href="https://sites.google.com/mila.quebec/linc-lab/home" class="">Learning in Neural Circuits Lab</a><br>
McGill University / MILA
</div>
</div>
<div class="mosaic">
<img src="images/team/team-riedel.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="http://www.morrisriedel.de/ ">Morris Riedel</a></div>
<a href="https://www.fz-juelich.de/en/ias/jsc " class="">Jülich Supercomputing Centre (JSC)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-royer.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Jessica Royer</div>
<a href="http://mica-mni.github.io/">Multimodal Imaging and Connectome Analysis (MICA) Lab</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-saberi.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://www.fz-juelich.de/profile/saberi_a">Amin Saberi</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-7">Institute for Neuroscience and Medicine, Brain and Behaviour (INM-7)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-schaare.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://www.fz-juelich.de/profile/schaare_l">Lina Schaare</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-7">Institute for Neuroscience and Medicine, Brain and Behaviour (INM-7)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-schiffer.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/schiffer_c">Christian Schiffer</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/profile-temp2.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Paule-J Toussaint </div>
<a href="https://www.mcgill.ca/neuro/">Montreal Neurological Institute-Hospital </a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-tugsbayar.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Mashbayar Tugsbayar</div>
<a href="https://sites.google.com/mila.quebec/linc-lab/home">Learning in Neural Circuits Lab</a><br>
McGill University / MILA
</div>
</div>
<div class="mosaic">
<img src="images/team/team-upschulte.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/upschulte_e">Eric Upschulte</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-pedro.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small">Pedro Valdés-Sosa</div>
<a href="http://www.neuroinformatics-collaboratory.org/">Joint China-Cuba Collaboratory for Translational Neuroscience </a><br>
Cuban Neuroscience Center
</div>
</div>
<div class="mosaic">
<img src="images/team/team-valk.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://www.fz-juelich.de/en/inm/inm-7/research-groups/cognitive-neurogenetics">Sofie Valk</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-7">Institute for Neuroscience and Medicine, Brain and Behaviour (INM-7)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-konrad.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://konradwagstyl.com/ ">Konrad Wagstyl</a></div>
<a href="https://www.fil.ion.ucl.ac.uk/">Wellcome Centre for Human Neuroimaging</a><br>
University College London
</div>
</div>
<div class="mosaic">
<img src="images/team/team-wan.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name other-small"><a href="https://www.fz-juelich.de/profile/wan_b">Bin Wan</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-7">Institute for Neuroscience and Medicine, Brain and Behaviour (INM-7)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-xindi.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Xindi Wang</div>
<a href="https://mcin.ca">McGill Centre for Integrative Neuroscience (MCIN)</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-yezhou.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Yezhou Wang</div>
<a href="http://mica-mni.github.io/">Multimodal Imaging and Connectome Analysis (MICA) Lab</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-wenzel.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.fz-juelich.de/profile/wenzel_s">Susanne Wenzel</a></div>
<a href="https://www.fz-juelich.de/en/inm/inm-1">Institute for Neuroscience and Medicine, Structural and functional organisation of the brain (INM-1)</a><br>
Forschungszentrum Jülich
</div>
</div>
<div class="mosaic">
<img src="images/team/team-yiming-xiao.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small"><a href="https://yimingxiao.weebly.com/ ">Yiming Xiao</a></div>
<a href="http://www.healthx-lab.ca" class="">Health-X Lab </a><br>
Concordia University
</div>
</div>
<div class="mosaic">
<img src="images/team/team-zehl.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name julich-small"><a href="https://www.linkedin.com/in/lyuba-zehl/?originalSubdomain=de">Lyuba Zehl</a></div>
<a href="https://www.ebrains.eu/">EBRAINS AISBL</a><br>
</div>
</div>
<div class="mosaic">
<img src="images/team/team-yashar.jpg" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Yashar Zeighami</div>
<a href="https://mcin.ca">McGill Centre for Integrative Neuroscience (MCIN)</a><br>
McGill University
</div>
</div>
<div class="mosaic">
<img src="images/team/profile-temp2.png" class="">
<div class="mosaic-overlay">
<div class="mosiac-overlay-name mcgill-small">Mingli Zhang</div>
<a href="https://mcin.ca">McGill Centre for Integrative Neuroscience (MCIN)</a><br>
McGill University
</div>
</div>
</div>
</section>
<div class="clear-all"></div>
<!-- footer -->
<footer>
<blockquote class="quote-holder">
<img class="quote-image" src="images/icon-aquisition.png">
<p class="quote-text">An exciting new opportunity.</p>
</blockquote>
<div class="section-content flex">
<a href="https://www.fz-juelich.de/">
<img src="images/logo-julich.jpg">
</a>
<a href="https://mcgill.ca/">
<img src="images/logo-mcgill.png">
</a>
</div>
<p class="center" style="color: #fff;">For information please email us at <a href="mailto:[email protected]">[email protected]</a>
<br>All images on this website are licensed <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA”</a></p>
</footer>
<div class="brand-border-1"></div>
<div class="brand-border-2"></div>
<div class="brand-border-3"></div>
</div>
<script>
$(function(){
$("#showmenu").click(function(e){
$("#menu").slideUp();
if ($(this).next().is(":hidden")){
$(this).next().slideDown();
}
});
});
</script>
<script type="text/javascript">
$(function() {
$('.item').matchHeight();
});
</script>
<script type="text/javascript">
$(document).on('ready', function() {
$('#slick-slider').slick({
dots: true,
infinite: true,
autoplay: true,
autoplaySpeed: 4000,
draggable: true,
mobilefirst: true,
pauseonhover: true,
slidesToShow: 2,
slidesToScroll: 1,
responsive: [
{
breakpoint: 1500,
settings: {
slidesToShow: 1,
slidesToScroll: 1,
infinite: true,
dots: true
}
}
// You can unslick at a given breakpoint now by adding:
// settings: "unslick"
// instead of a settings object
]
});
});
</script>
<script type="text/javascript">
$(document).on('ready', function() {
$('#slick-slider-2').slick({
dots: true,
infinite: true,
autoplay: true,
autoplaySpeed: 6000,
draggable: true,
mobilefirst: true,
pauseonhover: true,
slidesToShow: 3,
slidesToScroll: 3,
responsive: [
{
breakpoint: 1220,
settings: {
slidesToShow: 2,
slidesToScroll: 2,
infinite: true,
dots: true
}
}
// You can unslick at a given breakpoint now by adding:
// settings: "unslick"
// instead of a settings object
]
});
});
</script>
</body></html>