-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1249 lines (1127 loc) · 47 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>MICA Lab</title>
<meta name="description" content="Multimodal Imaging and Connectome Analysis">
<meta name="author" content="[email protected]">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--[if lt IE 9]><script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.2/html5shiv.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.min.js"></script><![endif]-->
<link rel="stylesheet" href="assets/base.css">
<link rel="stylesheet" href="fixed-navigation-bar.css">
<link href='https://fonts.googleapis.com/css?family=Roboto:500,400,300,200,100' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="http://sixrevisions.com/favicon.ico">
</head>
<body>
<nav class="fixed-nav-bar">
<div id="menu" class="menu">
<a class="sitename" href="index.html">MICA</a>
<a class="show" href="#menu">Menu</a><a class="hide" href="#hidemenu">Menu</a>
<ul class="menu-items">
<li><a href="#research">RESEARCH</a></li>
<li><a href="#software">SOFTWARE</a></li>
<li><a href="#people">PEOPLE</a></li>
<li><a href="#news">GALLERY</a></li>
<li><a href="#funding">FUNDING</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
</div>
</nav>
<section class="content">
<div class="description">
<p class="summary2"></p>
</div>
</section>
<section class="some-related-articles" id="research">
</br>
</br>
<h1>MULTIMODAL & MULTISCALE NEUROSCIENCE </h1>
<p>Welcome! </br></br>We are the Multimodal Imaging and Connectome Analysis (MICA) Lab </r>
and are situated at the <a href="http://www.mcgill.ca/bic/home" target="_blank">McConnell Brain Imaging Centre</a> of the
<a href="http://www.mcgill.ca/neuro/" target="_blank">Montreal Neurological Institute</a>.
</br>
</br>
Our research seeks to understand the role of brain network organization in human cognition in healthy and diseased populations, notably people with epilepsy and autism. We develop neuroinformatics and data science methods to integrate neuroimaging, histological, and transcriptomics techniques with large-scale network models and behavioral assays. Our research rests on three complementary themes that address how brain structure, brain function, and cognition converge in healthy and diseased humans.</p>
</br>
<img src="assets/multiscale.png" width="60%" >
<p><small>Multiscale neuroscience. </br>
For details, see e.g. <a href="https://elifesciences.org/articles/60673" target="_blank">Lariviere et al.(2018) Brain Connectivity </a></p></small>
</br>
</br>
<h2>THEME 1 | TOWARDS MULTI-SCALE CARTOGRAPHIES OF THE HUMAN BRAIN </h2>
<p> Our team studies spatial patterns of microstructure, connectivity, and function, and assesses parallel and hierarchical principles of cortical organization. </br>
</br>
We developed a several approaches to integrate microstructural measures (derived from histology, or ultrahigh field MRI) with task-related/task-free functional MRI, macroscale connectomics, as well as meta-analytical and gene expression data for multiscale discovery neuroscience. We disseminated multiple open software tools and released datasets to the community to study the spatial organiztion of the human, and non-human brain. </br>
</br>
Our lab is embedded in the <a href="https://bigbrainproject.org/hiball.html" target="_blank">Helmholtz International BigBrain Analytics and Learning Laboratory (Hiball)</a>, to work towards the next generation of 3D brain models and bio-inspired AI. </p>
</br>
</br>
<img src="assets/Lab_hippocampus_histo.png" width="60%" ></br>
<p><small>Hippocampal histology gradients. </br>
For details, see e.g. <a href="https://elifesciences.org/articles/60673" target="_blank">Paquola et al. (2020) eLife </a></small> </p>
</br>
</br>
</br>
<img src="assets/Lab_hippocampus.png" width="70%" ></br>
<p><small>Hippocampal subfield connectivity gradients. </br>
For details, see e.g. <a href="https://www.ncbi.nlm.nih.gov/pubmed/31220215" target="_blank">Vos de Wael et al. (2019) PNAS</a></small> </p>
</br>
</br>
</br>
<img src="assets/Lab_gradients.png" width="70%" ></br>
<p><small>Multiscale approaches to delineate gradients of cortical organization. </br>
For details, see e.g. <a href="https://www.ncbi.nlm.nih.gov/pubmed/31107870" target="_blank">Paquola et al. (2019) PLoS Biology</a></small> </p>
</p>
</br>
</br>
</br>
<h2> THEME 2 | STUDYING MULTI-SCALE NETWORK PERTURBATIONS IN DISEASE </h2>
<p>Cortical systems have been shown to be preferentially susceptible to a broad range of neurodevelopmental and neurodegenerative conditions. Drug-resistant epilepsy, a severe disorder affecting tens of millions of people world wide, incorporates both a neurodevelopmental etiology and a progressive trajectory resembling established neurodegenerative conditions. Notably, many patients present with structural anomalies in specific regions, allowing for investigations on the causal role of these regions in brain function and cognition. Patients with drug-resistant epilepsy indeed not only present with seizures, but often with impairments across multiple cognitive domains. These disturbances severely impact patients’ daily lives, and are often described as more detrimental to patient wellbeing than the seizures themselves. Moreover, while surgery targeting the structural lesion is the most effective treatment to control the seizures and often also results in beneficial cognitive side effects, a subgroup of patients may experience postoperative cognitive and affective difficulties.</br>
</br>
To examine the contribution of different brain regions to higher-order network organization and cognitive functions, we build multivariate and mediation analyses designed to link microstructural descriptors of pathology (derived from high-resolution MRI and histology) with structural and functional connectomics, as well as task-based measures of cognitive and affective dysfunction. Longitudinal designs assess the progressive impact of the disorder, and its modulation by clinical factors. Additionally, we build computational approaches that leverage multimodal imaging and AI technology to improve the prediction of clinical and cognitive outcomes following epilepsy surgery, with the goal of making recommendations for improved interventions.
</p>
</br>
</br>
</br>
<img src="assets/hubs.jpg" width="65%" ></br>
<p><small>Network modeling of epilepsy in the common epilepsies, with <a href="http://enigma.ini.usc.edu/ongoing/enigma-epilepsy/" target="_blank">Enigma-Epilepsy</a>. </br>
For details, see <a href="https://advances.sciencemag.org/content/6/47/eabc6457" target="_blank">Lariviere et al. (2020) Science Advances</a></small> </p>
</br>
</br>
</br>
<img src="assets/Lab_multiscale.png" width="65%" ></br>
<p><small>Multiscale computatinal models in focal and generalized epilepsy. </br>
For details, see <a href="https://www.ncbi.nlm.nih.gov/pubmed/31004070" target="_blank">Weng et al. (2020) Comms Bio</a></small> </p>
</br>
</br>
</br>
<img src="assets/Lab_tle.png" width="65%" ></br>
<p><small>Multiscale approaches in patients with temporal lobe epilepsy. </br>
For details, see e.g. <a href="https://www.ncbi.nlm.nih.gov/pubmed/31004070" target="_blank">Bernhardt et al. (2019) Neurology</a></small> </p>
</br>
</br>
</br>
<h2> THEME 3 | MULTI-SCALE ANALYSIS OF TYPICAL AND ATYPICAL BRAIN DEVELOPMENT </h2>
<p>We study interactions between brain structure and function during typical neurodevelopment and in people affected by common neurodevelopment indications </br>
</br>
</br>
</br>
<img class="img-circle" src="assets/park.png" width="60%"></br>
<p><small>Macroscale structural gradients and cortical microcircuit models in autism spectrum conditions. </br>
For details, see e.g. <a href="https://www.nature.com/articles/s41467-021-21732-0" target="_blank">Park et al. (2021) Nature Comms</a></small> </p>
</br>
</br>
</br>
<img class="img-circle" src="assets/Lab_asdgradient.png" width="60%"></br>
<p><small>Atypical functional connectivity gradients in inviduals with autism. </br>
For details, see e.g. <a href="https://www.ncbi.nlm.nih.gov/pubmed/28968847" target="_blank">Hong et al. (2019) Nature Comms</a></small> </p>
</br>
</br>
</br>
<img class="img-circle" src="assets/Lab_clustering.png" width="60%"></br>
<p><small>Data-driven autism subtypes, based on structural MRI features of atypical vertical and horizontal cortical organization. </br>
For details, see e.g. <a href="https://www.ncbi.nlm.nih.gov/pubmed/28968847" target="_blank">Hong et al. (2018) Cerebral Cortex</a></small> </p>
</p>
</section>
<section class="content_contact" id="PAPERS">
<div class="description">
</br>
</br>
<h3 >SELECTED PAPERS</h3>
</br>
</br>
<h4>CORTICAL MICROSTRUCTURAL GRADIENTS CAPTURE MEMORY NETWORK REORGANIZATION IN TEMPORAL LOBE EPILEPSY</h4>
<p>Royer J, Larivière S, Rodriguez-Cruces R, Cabalo DG, Tavakol S, Auer H, Ngo A, Park BY, Paquola C, Smallwood J, Jefferies E, Caciagli L, Bernasconi A, Bernasconi N, Frauscher B, Bernhardt BC (2023) Brain, 146(9): 3923-37.
</br>
<a href="https://academic.oup.com/brain/article/146/9/3923/7134129?login=false" target="_blank">>pdf</a>
</p>
</br>
<h4>ATYPICAL INTRINSIC NEURAL TIMESCALES IN TEMPORAL LOBE EPILEPSY</h4>
<p>Xie K, Royer J, Lariviere S, Rodriguez-Cruces R, de Wael RV, Park BY, Auer H, Tavakol S, DeKraker J, Abdallah C, Caciagli L, Bassett DS, Bernasconi A, Bernasconi N, Frauscher B, Concha L, Bernhardt BC (2023) Epilepsia, 64(4): 998-1011.
</br>
<a href="https://onlinelibrary.wiley.com/doi/10.1111/epi.17541" target="_blank">>pdf</a></p>
</br>
<h4>BRAINSTAT: A TOOLBOX FOR BRAIN-WIDE STATISTICS AND MULTIMODAL FEATURE ASSOCIATIONS</h4>
<p>Larivière S, Bayrak S, Vos de Wael R, Benkarim O, Herholz P, Rodriguez-Cruces R, Paquola C, Hong SJ, Misic B, Evans AC, Valk SL, Bernhardt BC (2023) Neuroimage, 266:119807.
</br>
<a href="https://onlinelibrary.wiley.com/doi/10.1111/epi.17541" target="_blank">>pdf</a></p>
</br>
<h4>MICAPIPE: A PIPELINE FOR MULTIMODAL NEUROIMAGING AND CONNECTOME ANALYSIS</h4>
<p>Cruces RR, Royer J, Herholz P, Larivière S, Vos de Wael R, Paquola C, Benkarim O, Park BY, Degré-Pelletier J, Nelson MC, DeKraker J, Leppert IR, Tardif C, Poline JB, Concha L, Bernhardt BC (2023) Neuroimage, 263:119612.</br>
<a href="https://www.sciencedirect.com/science/article/pii/S1053811922007273?via%3Dihub" target="_blank">>pdf</a></p>
</br>
<h4>CLOSING THE MECHANISTIC GAP: THE VALUE OF MICROARCHITECTURE IN UNDERSTANDING COGNITIVE NETWORKS</h4>
<p>Paquola C, Amunts K, Evans A, Smallwood J, Bernhardt B (2023) TICS, 26(10):873-886.</br>
<a href="https://www.cell.com/trends/cognitive-sciences/fulltext/S1364-6613(22)00158-9?_returnURL=https%3A%2F%2Flinkinghub.elsevier.com%2Fretrieve%2Fpii%2FS1364661322001589%3Fshowall%3Dtrue" target="_blank">>pdf</a>
</p>
</br>
<h4>STRUCTURAL NETWORK ALTERATIONS IN FOCAL AND GENERALIZED EPILEPSY ASSESSED IN A WORLDWIDE ENIGMA STUDY FOLLOW AXES OF EPILEPSY RISK GENE EXPRESSION</h4>
<p>Larivière S, Royer J, Rodríguez-Cruces R, Paquola C, ..., Bernasconi N, Bernhardt BC. (2022) Nat Comms, 13(1):4320. </br>
<a href="https://www.nature.com/articles/s41467-022-31730-5" target="_blank">>pdf</a>
</p>
</br>
<h4>ADOLESCENT DEVELOPMENT OF MULTISCALE STRUCTURAL WIRING AND FUNCTIONAL INTERACTIONS IN THE HUMAN CONNECTOME</h4>
<p>Park BY, Paquola C, Bethlehem RAI, ... Smallwood J, Bullmore ET, Bernhardt BC (2022) PNAS, 119(27): e2116673119. </br>
<a href="https://www.pnas.org/doi/10.1073/pnas.2116673119?url_ver=Z39.88-2003&rfr_id=ori%3Arid%3Acrossref.org&rfr_dat=cr_pub++0pubmed" target="_blank">>pdf</a></p>
</br>
<h4>GENETIC AND PHYLOGENTIC UNCOUPLING STRUCTURE AND FUNCTION IN HUMAN TRANSMODAL CORTEX</h4>
<p>Valk SL, Xu T, Paquola C, Park BY, ..., Smallwood J, Eickhoff SB, Bernhardt BC. (2022) Nat Comms, 13(1):2341.
</br>
<a href="https://www.nature.com/articles/s41467-022-29886-1" target="_blank">>pdf</a></p>
</br>
<h4>DISORGANIZATION OF LANGUAGE AND WORKING MEMORY SYSTEMS IN FRONTAL VERSUS TEMPORAL LOBE EPILEPSY</h4>
<p>Caciagli L, Paquola C, ... Bassett DS, Koepp MJ, Bernhardt BC (2022) Brain, 146(3):935-953.
</br>
<a href="https://academic.oup.com/brain/article/146/3/935/6576654?login=false" target="_blank">>pdf</a></p>
</br>
<h4>THE ENIGMA TOOLBOX: MULTISCALE NEURAL CONTEXTUALIZATION OF MULTISITE NEUROIMAGING DATASETS</h4>
<p>Lariviere S, Paquola C, Park B, ..., Sisodiya SM, McDonald CR, Thompson PM, Bernhardt BC (2021). Nature Methods, 18, pages 698–700.
</br>
<a href="https://www.nature.com/articles/s41592-021-01186-4" target="_blank">>pdf</a></p>
</br>
<h4>DIFFERENCES IN SUBCORTICO-CORTICAL INTERACTIONS IDENTIFIED FROM CONNECTOME AND MICROCIRCUIT MODELS IN AUTISM</h4>
<p>Park B, Hong S, Valk SL, ..., Yeo BTT, Smallwood J, Bernhardt BC (2021) Nature Communications, 12(2225).
</br>
<a href="https://www.nature.com/articles/s41467-021-21732-0.epdf" target="_blank">>pdf</a></p>
</br>
<h4>ATYPICAL NEURAL TOPOGRAPHIES UNDERPIN DYSFUNCTIONAL PATTERN SEPARATION IN TEMPORAL LOBE EPILEPSY</h4>
<p>Li Q, Tavakol S, Toyer J, ..., Smallwood J, Caciagli L, Li S, Bernhardt BC (2021).Brain, 144(8):2486-2498.
</br>
<a href="https://doi.org/10.1093/brain/awab121" target="_blank">>pdf</a></p>
</br>
<h4>NETWORK BASED ATROPHY MODELING IN THE COMMON EPILEPSIES: A WORLDWIDE ENIGMA STUDY</h4>
<p>Lariviere S, et al. (2020). Science Advances, 6(47): eabc6457.
</br>
<a href="https://advances.sciencemag.org/content/6/47/eabc6457/tab-article-info" target="_blank">>pdf</a></p>
</br>
<h4>MYELOARCHITECTURE GRADIENTS IN THE HUMAN INSULA: HISTOLOGICAL UNDERPINNINGS AND ASSOCIATION TO INTRINSIC FUNCTIONAL CONNECTIVITY</h4>
<p>Royer J, Paquola C, Larivière S, ..., Smallwood J, Frauscher B, Bernhardt BC (2020) Neuroimage, Volume 216, 1 August 2020, 116859.
</br>
<a href="https://www.sciencedirect.com/science/article/pii/S1053811920303451" target="_blank">>pdf</a></p>
</br>
<h4>BRAINSPACE: A TOOLBOX FOR THE ANALYSIS OF MACROSCALE GRADIENTS IN NEUROIMAGING AND CONNECTOMICS DATASETS</h4>
<p>Vos de Wael R, Benkarim O, Paquola C, ..., Margulies D, Smallwood J, Bernhardt BC (2020) Comms Biol. 3(1):103.
</br>
<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7058611/pdf/42003_2020_Article_794.pdf" target="_blank">>pdf</a></p>
</br>
<h4>MICROSTRUCTURAL AND FUNCTIONAL GRADIENTS ARE INCREASINGLY DISSOCATED IN TRANSMODAL CORTICES</h4>
<p>Paquola C, Vos de Wael R, Wagstyl K, ..., Margulies DS, Smallwood J, Bernhardt BC (2019) PLoS Biology. 2019 May 20;10(1):1022.</br>
<a href="https://www.ncbi.nlm.nih.gov/pubmed/31107870" target="_blank">>pdf</a></p>
</br>
<h4>ATYPICAL FUNCTIONAL CONNECTOME HIERARCHY IN AUTISM</h4>
<p>Hong SJ, Vos de Wael R, Bethlehem RAI, ..., Margulies DS, Smallwood J, Bernhardt BC (2019)
Nat Commun. 2019 Mar 4;10(1):1022.</br>
<a href="https://www.nature.com/articles/s41467-019-08944-1.pdf" target="_blank">>pdf</a></p>
</br>
</br>
</br>
<p>A complete list of publications and citations is available <a href="https://scholar.google.ca/citations?user=WlKrpE4AAAAJ&hl=en" target="_blank">here</a>.
</br>
</br>
</p>
</DIV>
</section>
<section class="some-related-articles">
<div class="description">
</br>
</br>
<h1 id="software">SOFTWARE</h1>
</br>
<p>Our software ecosystem
</p>
</br>
<img src="assets/micapipe.png" width="30%" ></br>
<p>Micapipe is a fully automated toolbox for the processing and fusion of multimodal neuroimaging and connectomics data, available as BIDSApp. </br> </br>
Docu <a href="https://micapipe.readthedocs.io" target="_blank">here</a>.</br>
Get it on <a href="https://github.com/MICA-MNI/Micapipe" target="_blank">github</a>.
</br>
</br>
<img src="assets/BRAINSPACE_LOGO.png" width="50%" ></br>
<p>BrainSpace is a toolbox for the mapping of spatial gradients in cortical organization. BrainSpace is available in Python and MATLAB. The toolbox also contains normative maps and tools to generate spatial null models. </br> </br>
Docu <a href="https://brainspace.readthedocs.io/en/latest/" target="_blank">here</a>.</br>
Get it on <a href="https://github.com/MICA-MNI/BrainSpace" target="_blank">github</a>.
</br>
</br>
<img src="assets/brainstat_logo_bw.png" width="50%" ></br>
<p>BrainStat is a Matlab/Python toolbox for the statistical analysis of univariate and multivariate surface/volume/parcel data and for multiscale neural contextualization.
</br> </br>
Docu <a href="https://brainstat.readthedocs.io" target="_blank">here</a>. </br>
Get it on <a href="https://github.com/MICA-MNI/Brainstat" target="_blank">github</a>.
</br>
</br>
<img src="assets/BBW_LOGO.png" width="30%" ></br>
<p>BigBrainWarp aims to enable integration of 3D histolohy with neuroimaging and other neurobiological modalities, bringing cytoarchitectural to multi-scale neuroscientific discovery. </br> </br>
Docu <a href="https://bigbrainwarp.readthedocs.io/" target="_blank">here</a>.</br>
Get it on <a href="https://github.com/caseypaquola/BigBrainWarp" target="_blank">github</a>.
</br>
</br>
<img src="assets/Enigma_toolbox2.png" width="25%" ></br>
<p>The ENIGMA TOOLBOX provides a centralized, and continuously updated, repository of meta-analytical case-control comparisons across a wide range of disorders. </br> </br>
Docu <a href="https://enigma-toolbox.readthedocs.io/" target="_blank">here</a>.</br>
Get it on <a href="https://github.com/MICA-MNI/ENIGMA" target="_blank">github</a>.
</br>
</br>
<img src="assets/hippomaps.png" width="25%" ></br>
<p>HippoMaps is an open data warehouse and toolbox for contextualization of hippocampal findings against post-mortem histology, in vivo imaging, and electrophysiology. </br> </br>
Docu <a href="https://hippomaps.readthedocs.io/" target="_blank">here</a>.</br>
Get it on <a href="https://github.com/MICA-MNI/hippomaps" target="_blank">github</a>.
</br>
</br>
</div>
</section>
<section class="content_contact" id="people">
</br>
</br>
<div class="description">
<h3 >PEOPLE</h3>
<p class="summary2"> We are always looking for talented and enthusiastic trainees to join our lab! </br>
If you are interested in joining, please <a class="onblue" href="mailto:[email protected]">email</a>
us your CV and a cover letter</p>
<center>
<table style="width:65%">
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/bo.jpg" width="150px"/></br>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top" align="left">
<p class="summary3">Boris Bernhardt, PhD</br>
Associate Professor of Neurology and Neurosurgery</br>
Canada Research Chair for Cognitive Neuroinformatics </br>
Neuroimaging | Connectomics | Epilepsy | Autism | Neuroinformatics</br>
<a class="onblue" href="mailto:[email protected]">email</a></p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/raul.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Raul Rodriguez-Cruces, MD PhD</br>
FRQS Postdoctoral Researcher, MNI Molson Fellow</br>
Epilepsy | Neurodegeneration | Cognition | Multimodal </br>
<a class="onblue" href="mailto:[email protected]">email</a></br>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/jo.png" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Jordan DeKraker, PhD</br>
NSERC Postdoctoral Researcher</br>
Hippocampus | Hippocampus | Hippocampus</br>
<a class="onblue" href="mailto:[email protected]">email</a></br>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/photo_zc.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Zhengchen Cai, PhD</br>
FRQS Postdoctoral Researcher</br>
Epilepsy | Multimodal | EEG-fMRI | Bayesian </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/ni.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Nicole Eichert, PhD</br>
Wellcome Trust Postdoctoral Researcher </br>
Structure-function | gradients | evolution | temporal lobe </br>
<a class="onblue" href="mailto:[email protected]">email</a></br>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/je.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Jessica Royer, D Clin Psy</br>
CIHR PhD student</br>
Multi-scale | Epilepsy | Limbic System | Connectomics | EEG </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/yz.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Yezhou Wang, MSc</br>
Hiball PhD student, FRQNT Fellow </br>
Gradients | Microstructure | Histology | Multi-scale </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/ju.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Judy Chen</br>
FRQS MD-PhD student</br>
Childhood Epilepsy | Neuroimaging | Machine Learning </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/el.png" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Ella Sahlas</br>
FRQS MD-PhD student</br>
Epilepsy | Neuroimaging | Machine Learning </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/ango.png" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Alex Ngo, BSc</br>
CIHR PhD student</br>
Imaging-Genetics | Connectomics | Epilepsy | Multimodal </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/ha.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Hans Auer, BSc</br>
FRQS MSc student/br>
Multimodal imaging | Connectomics | Histology </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/jack_bw.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Jack Lam, MD</br>
PhD student/br>
Epilepsy | PET | Neurosurgery | Clinical Outcomes </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/yigu_bw.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Yigu Zhou, MSc</br>
MD-PhD student</br>
Multimodal | Spatial | Epilepsy </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/ke.png" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Ke Xie, Msc</br>
CSC Fellow, PhD student</br>
Epilepsy | Functional Imaging | Multimodal</br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/donna.png" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Donna Gift Cabalo, Msc</br>
FRQS and Savoy Fellow, PhD Studemt</br>
Mesiotemporal Lobe | Memory | Functional Imaging</br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/paul_bw.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Paul Bautin, MSc</br>
PhD student</br>
Neuroimaging | Structure-function | Autism </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/youngyeun.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Youngeun Hwang, Msc</br>
IPN-HIBALL PhD student</br>
Ultra-high field imaging | Subcortex | Multiscale</br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/arielle.png" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Arielle Dascal, MSc</br>
QBIN PhD student</br>
Neuroimaging | Epilepsy | Hubs</br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/meaghan.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Meaghan Smith, Bsc</br>
CIHR MSc student</br>
Ultra-high field imaging | Movies | fMRI</br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
</table>
</center>
</div>
</br>
</br>
</br>
</br>
</section>
<section class="some-related-articles">
</br>
</br>
<h1 >COLLABORATORS</h1>
<p>Connect with our collaborators:</p>
<a href="http://www.bic.mni.mcgill.ca/~noel" target="_blank">Andrea and Neda Bernasconi, MNI, Montreal, QC</a></br>
</br>
<a href="https://www.queensu.ca/psychology/jonathan-smallwood" target="_blank">Jonny Smallwood, Queens Univesity, Kingston, ON</a></br>
</br>
<a href="https://www.york.ac.uk/psychology/staff/academicstaff/ej514/" target="_blank">Beth Jefferies, York Neuroimaging Center, UK</a></br>
</br>
<a href="https://www.neuroconnlab.org/" target="_blank">Daniel Margulies, Institut de Cerveau et de la Moelle épinière, Paris, France</a></br>
</br>
<a href="https://www.kcl.ac.uk/people/rob-leech" target="_blank">Rob Leech, Kings College London</a></br>
</br>
<a href="http://www.fz-juelich.de/SharedDocs/Personen/INM/INM-7/DE/valk_s.html" target="_blank">Sofie Valk, Forschungszentrum Julich, Germany</a></br>
</br>
<a href="http://combinelab.net/resume/" target="_blank">Seok-Jun Hong, Sungkyunkwan University, South Korea</a></br>
</br>
<a href="https://by9433.wixsite.com/boyongpark/more-boyong" target="_blank">Bo-yong Park, INHA University, South Korea</a></br>
</br>
<a href="http://www.fz-juelich.de/SharedDocs/Personen/INM/INM-7/DE/valk_s.html" target="_blank">Bratislav Misic, MNI, Montreal, QC</a></br>
</br>
<a href="https://www.neuroscience.cam.ac.uk/directory/profile.php?rb643" target="_blank">Richard Bethlehem, Cambridge University, Uk</a></br>
</br>
<a href="https://childmind.org/bio/adriana-di-martino/" target="_blank">Adriana Di Martino, Child Mind Institute, NYC</a></br>
</br>
<a href="https://childmind.org/bio/michael-p-milham-md-phd/" target="_blank">Michael Milham, Child Mind Institute, NYC</a></br>
</br>
<a href="http://www.cbs.mpg.de" target="_blank">Tania Singer, Max-Planck Institute for Human Cognitive and Brain Science, Germany</a></br>
</br>
<a href="https://bcchr.ca/our-research/researchers/results/Details/dewi-schrader">Dewi Schrader, University of British Columbia Children's Hospital, Vancouver, BC</a></br>
</br>
<a href="https://scholar.google.com/citations?user=yI0499EAAAAJ&hl=en">Zhiqiang Zhang, Nanjing University Hospital, China</a></br>
</br>
</br>
</br>
</br>
</section>
<section class="content_contact">
<div class="description">
<h3>ALUMNI</h3>
<center>
<table style="width:65%">
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/ou.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Oualid Benkarim, PhD</br>
HBHL Postdoctoral Researcher, IVADO Postdoc Entrepreneur</br>
AI | Autism | Epilepsy | Machine Learning </br>
<a class="onblue" href="mailto:[email protected]">email</a></br>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/shoo.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Shahin Tavakol, Msc</br>
CONP PhD student, faculty of medicine fellow</br>
Mesiotemporal Lobe | Memory | Functional Imaging</br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/val.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Valeria Kebets, PhD</br>
TACC Postdoctoral Researcher</br>
Now Manager of Machine Learning Projects at Concordia University </br>
<a class="onblue" href="mailto:[email protected]">email</a></br>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/boyong.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Bo-Yong Park, PhD</br>
FRQS Postdoctoral Researcher</br>
Now faculty at INHA University </br>
<a class="onblue" href="mailto:[email protected]">email</a></br>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/ca.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Casey Paquola, PhD</br>
FRQS Postdoctoral Researcher</br>
Now Postdoc at FZ Julich, Hiball fellow </br>
<a class="onblue" href="mailto:[email protected]">email</a></br>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/ma.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Margie Garber, MSc</br>
Rotation PhD student </br>
Gradients | Histology | Networks </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/kriso.png" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Kristina Song, BSc</br>
Undergraduate trainee</br>
Multimodal imaging | connectomics | pediatric epilepsy </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/ql.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Qiongling Li, PhD Student</br>
CSC PhD student (with Beihan U)</br>
Hippocampus | fMRI | Memory </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/ja.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Janie Degree-Pelletier, Msc</br>
Visiting PhD student (supervised by Isabelle Soulieres) </br>
Autism | Neuroimaging | Cognition </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/yi.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Yifei Wang, MD</br>
CSC PhD student (with U Nanjing)</br>
Epilepsy | Multimodal | Connectome </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/re.png" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Reinder Vos de Wael, PhD</br>
Now research engineer for CMI North</br>
Hippocampus | Neuroinformatics | Functional topography | Dynamics </br>
<a class="onblue" href="mailto:[email protected]">email</a></br>
</p>
</td>
</tr>
<tr >
<td style="width:20px" valign="top" style="height:230px">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/sa.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Sara Lariviere, PhD</br>
Now Banting Postdoc at Harvard</br>
Multiscale | Epilepsy | Brain Development | Connectome </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/elise.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Elise Roger, PhD student</br>
Visiting student</br>
Hippocampus | functional MRI | Epilepsy</br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/yun.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Yun Lu, MSc</br>
PhD student </br>
Memory | Mesiotemporal Lobe | Multimodal | Gradients </br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/sh.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Shelly Yin, BHons</br>
Honors student</br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/sophie.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Sophie Haas, BSc</br>
Visiting student from U Osnarbueck</br>
<a class="onblue" href="mailto:[email protected]">email</a>
</p>
</td>
</tr>
<tr>
<td style="width:20px" valign="top">
</td>
<td style="width:160px" valign="top">
<img class="img-circle" src="assets/pics/al.jpg" width="150px"/>
</td>
<td style="width:10px" valign="top">
</td>
<td style="width:320px" valign="top">
<p class="summary3">Alex Lowe, Msc</br>
Graduate student, now at U Cambridge</br>
<a class="onblue" href="mailto:[email protected]">email</a>