-
Notifications
You must be signed in to change notification settings - Fork 10
/
fellows-resources.html
1070 lines (990 loc) · 58 KB
/
fellows-resources.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 lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WJRL86VLXW"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WJRL86VLXW');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Fellows Resources - ReproNim</title>
<!-- CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/1.5.2/css/ionicons.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- font -->
<link href='https://fonts.googleapis.com/css?family=Nova+Square' rel='stylesheet'>
<link rel="stylesheet" href="font/font.css">
</head>
<body>
<div id="wrapper">
<section class="section-1">
<header class="site-header">
<div class="container">
<div class="row">
<div class="col-sm-4 col-xs-8">
<h1 class="logo"><a href="index.html">ReproNim</a></h1>
</div>
<div class="col-sm-8 col-xs-4">
<nav class="navbar pull-right" role="navigation">
<!-- Brand and toggle get grouped for better mobile display -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="ion-navicon"></span>
</button>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="discover.html">Discover</a></li>
<li><a href="describe.html">Describe</a></li>
<li><a href="do.html">Do</a></li>
<li><a href="teach.html">Teach</a></li>
<li><a href="fellowship.html">Fellowship</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="search.html">🔍</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</nav>
</div>
</div> <!-- row -->
</div>
</header> <!-- site header -->
</section>
<section class="section-1">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="main-page-header">Fellows' Resources</h1>
</div>
<h3 class="main-sub-header">Resources developed by fellows.</h3>
</div><!-- row -->
</div>
</section>
<!-- BEGIN RESOURCES -->
<section class="section-1">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>A (brief) Introduction to Open and Reproducible Science In Computational Brain Imaging</dd>
<dt>Type</dt>
<dd>Lecture</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>graduate students, postdocs in Psych to electrical engineering</dd>
<dt>Keywords</dt>
<dd>reproducibility, re-executability, computation, brain imaging, open science, version control, workflows</dd>
<dt>Links</dt>
<dd><a href="https://github.com/sebastientourbier/openneuroresources/blob/master/lectures/reproducibility_trabit19.pdf" target="_blank">https://github.com/sebastientourbier/openneuroresources/blob/master/lectures/reproducibility_trabit19.pdf</a><br></dd>
<dt>Fellow</dt>
<dd>Sebastien Tourbier</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Southampton Brain Image Processing Workshops</dd>
<dt>Type</dt>
<dd>Workshop</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>academics and clinicians developing image processing and data analysis methods for neurological disorders</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://sotnir.github.io/svg" target="_blank">https://sotnir.github.io/svg</a><br></dd>
<dt>Fellow</dt>
<dd>Yukai Zou</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Brainhack NY</dd>
<dt>Type</dt>
<dd>Event</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd></dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://brainhack-ny.github.io/" target="_blank">https://brainhack-ny.github.io/</a><br></dd>
<dt>Fellow</dt>
<dd>Xihe Xie</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>BrainIAK</dd>
<dt>Type</dt>
<dd>Tutorials</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd></dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://brainiak.org/tutorials/" target="_blank">https://brainiak.org/tutorials/</a><br></dd>
<dt>Fellow</dt>
<dd>Elizabeth McDevitt</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Carpentries Incubator: SDC-BIDS-diffusion MRI</dd>
<dt>Type</dt>
<dd>Workshop</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>grad students, postdocs, staff</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://github.com/carpentries-incubator/SDC-BIDS-dMRI" target="_blank">https://github.com/carpentries-incubator/SDC-BIDS-dMRI</a><br></dd>
<dt>Fellow</dt>
<dd>Michael Joseph</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Carpentries Incubator: SDC-BIDS-functional MRI</dd>
<dt>Type</dt>
<dd>Workshop</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>grad students, postdocs, staff</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://github.com/carpentries-incubator/SDC-BIDS-fMRI" target="_blank">https://github.com/carpentries-incubator/SDC-BIDS-fMRI</a><br></dd>
<dt>Fellow</dt>
<dd>Michael Joseph</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Carpentries Incubator: SDC-BIDS-IntroMRI</dd>
<dt>Type</dt>
<dd>Workshop</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>grad students, postdocs, staff</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://github.com/carpentries-incubator/SDC-BIDS-IntroMRI" target="_blank">https://github.com/carpentries-incubator/SDC-BIDS-IntroMRI</a><br></dd>
<dt>Fellow</dt>
<dd>Michael Joseph</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Creating Environments for Reproducible Science</dd>
<dt>Type</dt>
<dd>Brainhack event</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>Undergraduate - faculty</dd>
<dt>Keywords</dt>
<dd>shell, git/github, python, R, hpc</dd>
<dt>Links</dt>
<dd><a href="https://github.com/jdkent/incf-fellow-jdkent/blob/gh-pages/index.md" target="_blank">https://github.com/jdkent/incf-fellow-jdkent/blob/gh-pages/index.md</a><br></dd>
<dt>Fellow</dt>
<dd>James Kent</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Data collection to paper-Git basics, Data Management</dd>
<dt>Type</dt>
<dd>Workshop</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>grad, research staff, postdoc, librarians</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://github.com/adswa/mpi-datamanagement-ws" target="_blank">https://github.com/adswa/mpi-datamanagement-ws</a><br></dd>
<dt>Fellow</dt>
<dd>Lennart Wittkuhn</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Data Science Basics in Neuroscience</dd>
<dt>Type</dt>
<dd>Course</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>grad, postdoc elective course</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://wcm-datascibasics.github.io/" target="_blank">https://wcm-datascibasics.github.io/</a><br></dd>
<dt>Fellow</dt>
<dd>Xihe Xie</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Data Science in Communication: Python and Reproducible Research</dd>
<dt>Type</dt>
<dd>Course</dd>
<dt>Description</dt>
<dd>COMM 160DS: Data Science in Communication: Python and Reproducible Research (Spring 2023, University of California, Santa Barbara)</dd>
<dt>Audience</dt>
<dd></dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://github.com/yibeichan/COMM160DS" target="_blank">https://github.com/yibeichan/COMM160DS</a><br></dd>
<dt>Fellow</dt>
<dd>Yibei Chen</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>DataLad Course/Handbook</dd>
<dt>Type</dt>
<dd>Workshop/online course</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>researchers all stages</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd></dd>
<dt>Fellow</dt>
<dd>Adina Wagner</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Fundamentals of MRI data</dd>
<dt>Type</dt>
<dd>Course</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>{'undergrad cog sci'}</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd></dd>
<dt>Fellow</dt>
<dd>Karolina Finc</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>German Learning platform for DataLad MOOC</dd>
<dt>Type</dt>
<dd>Course</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>researchers all stages</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://ki-campus.org/" target="_blank">https://ki-campus.org/</a><br></dd>
<dt>Fellow</dt>
<dd>Adina Wagner</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Git for Librarians</dd>
<dt>Type</dt>
<dd>Course</dd>
<dt>Description</dt>
<dd>This repository contains the curriculum and material for the Git for Librarians workshop at the VALA Tech Camp.</dd>
<dt>Audience</dt>
<dd></dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://git-for-librarians.netlify.app/" target="_blank">https://git-for-librarians.netlify.app/</a><br><a href="https://github.com/likeajumprope/Git_for_librarians" target="_blank">https://github.com/likeajumprope/Git_for_librarians</a><br></dd>
<dt>Fellow</dt>
<dd>Johanna Bayer</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Git Workshop</dd>
<dt>Type</dt>
<dd>Workshop</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>Researchers, Infrastructure managers</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://1drv.ms/b/s!AgJAAJz1ThiGms0Z1FcP8964X7sAxw?e=ZpBDCi" target="_blank">https://1drv.ms/b/s!AgJAAJz1ThiGms0Z1FcP8964X7sAxw?e=ZpBDCi</a><br></dd>
<dt>Fellow</dt>
<dd>Julian Kosciessa</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Gitlab, Docker</dd>
<dt>Type</dt>
<dd>Tutorial</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>postdocs, Neuroimaging grad students</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd></dd>
<dt>Fellow</dt>
<dd>Avery Van De Water</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Guidelines for hosting plus teaching resources</dd>
<dt>Type</dt>
<dd>Workshop</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>undergrad/grad students, postdoc, faculty</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://github.com/brainhack-uiowa/2020-brainhack" target="_blank">https://github.com/brainhack-uiowa/2020-brainhack</a><br></dd>
<dt>Fellow</dt>
<dd>James Kent</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>How to Analyze IQMs</dd>
<dt>Type</dt>
<dd>Educational notebook</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>masters students from physics and bio, Researchers- neuroimaging, machine learning</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd></dd>
<dt>Fellow</dt>
<dd>Celine Provins</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Image to Inference</dd>
<dt>Type</dt>
<dd>Course</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>undergrad, scientists, MD, postdoc</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://crnl.readthedocs.io/psyc589888/#overlay-context=" target="_blank">https://crnl.readthedocs.io/psyc589888/#overlay-context=</a><br></dd>
<dt>Fellow</dt>
<dd>Chris Rorden</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Individualized training, DataLad and Data consumption</dd>
<dt>Type</dt>
<dd>Video tutorial</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd></dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd></dd>
<dt>Fellow</dt>
<dd>Felix Hoffstaedter</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Interpretability of the Image Quality Metrics (IQMs) of MRIQC</dd>
<dt>Type</dt>
<dd>Book chapter</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>masters students from physics and bio, Researchers- neuroimaging, machine learning</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://www.nipreps.org/qc-book/auto-qc/iqms_intepretability.html" target="_blank">https://www.nipreps.org/qc-book/auto-qc/iqms_intepretability.html</a><br></dd>
<dt>Fellow</dt>
<dd>Celine Provins</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Intro to Open and Reproducible Science in Computational Brain Imaging</dd>
<dt>Type</dt>
<dd>Lecture</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd></dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://github.com/sebastientourbier/openneuroresources/blob/master/lectures/reproducibility_trabit19.pdf" target="_blank">https://github.com/sebastientourbier/openneuroresources/blob/master/lectures/reproducibility_trabit19.pdf</a><br></dd>
<dt>Fellow</dt>
<dd>Sebastien Tourbier</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Intro to Reproducibility Tools and Foundations</dd>
<dt>Type</dt>
<dd>Workshop</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>grad students, human cog neuro labs</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://brainhack-princeton.github.io/handbook/" target="_blank">https://brainhack-princeton.github.io/handbook/</a><br></dd>
<dt>Fellow</dt>
<dd>Elizabeth McDevitt</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Introduction to ReproNim</dd>
<dt>Type</dt>
<dd>Lecture</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd></dd>
<dt>Keywords</dt>
<dd>Github, DataLad, YODA</dd>
<dt>Links</dt>
<dd><a href="https://github.com/myyoda/talk-principles" target="_blank">https://github.com/myyoda/talk-principles</a><br><a href="https://github.com/DavidEWarrenPhD/INCF-Fellow-DavidEWarren" target="_blank">https://github.com/DavidEWarrenPhD/INCF-Fellow-DavidEWarren</a><br></dd>
<dt>Fellow</dt>
<dd>David Warren</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Managing Your Reproducible Experiments with DataLad and Boutiques</dd>
<dt>Type</dt>
<dd>Workshop</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>upper-level undergraduates and graduate students in the sciences</dd>
<dt>Keywords</dt>
<dd>reproducible computational workflows data management, data processing</dd>
<dt>Links</dt>
<dd><a href="https://github.com/gkiar/Repronim-GSAN" target="_blank">https://github.com/gkiar/Repronim-GSAN</a><br><a href="https://docs.google.com/document/d/12vvV_Vx9Jw03mr-gmAuSt2QnaByVXfhtoDPjObPGf4o/edit#heading=h.fv7xzjeknb2" target="_blank">https://docs.google.com/document/d/12vvV_Vx9Jw03mr-gmAuSt2QnaByVXfhtoDPjObPGf4o/edit#heading=h.fv7xzjeknb2</a><br><a href="https://docs.google.com/document/d/12vvV_Vx9Jw03mr-gmAuSt2QnaByVXfhtoDPjObPGf4o/edit#heading=h.pmutzjv87s05" target="_blank">https://docs.google.com/document/d/12vvV_Vx9Jw03mr-gmAuSt2QnaByVXfhtoDPjObPGf4o/edit#heading=h.pmutzjv87s05</a><br></dd>
<dt>Fellow</dt>
<dd>Greg Kiar</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>MRI Analysis & ReproNim Reproducibility Imaging</dd>
<dt>Type</dt>
<dd>Course</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>Target Audience: graduate students, novices</dd>
<dt>Keywords</dt>
<dd>Shell, fMRI basics, BIDS, FAIR, Statistics</dd>
<dt>Links</dt>
<dd><a href="https://github.com/eroesch/2019-20-PYM0FM" target="_blank">https://github.com/eroesch/2019-20-PYM0FM</a><br><a href="https://docs.google.com/spreadsheets/d/1VVsCPr4BS1Jc7TL6F7E9rJJsJ1_2PJojODq9uHUTb1A/edit#gid=0" target="_blank">https://docs.google.com/spreadsheets/d/1VVsCPr4BS1Jc7TL6F7E9rJJsJ1_2PJojODq9uHUTb1A/edit#gid=0</a><br></dd>
<dt>Fellow</dt>
<dd>Etienne Roesch</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Open & Reproducible Neuroimaging Data Science</dd>
<dt>Type</dt>
<dd>Annual Workshop</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>Graduate students/postdocs in neuroimaging</dd>
<dt>Keywords</dt>
<dd>Keywords: Linux, version control, python, data science, FAIR, reproducible basics</dd>
<dt>Links</dt>
<dd><a href="https://github.com/mick-d/repronim-fcbg" target="_blank">https://github.com/mick-d/repronim-fcbg</a><br><a href="https://docs.google.com/document/d/1iSJYKgCTs7gCOIxc3T2V5Nrzfc349R3X708-rx8EVvg/edit" target="_blank">https://docs.google.com/document/d/1iSJYKgCTs7gCOIxc3T2V5Nrzfc349R3X708-rx8EVvg/edit</a><br></dd>
<dt>Fellow</dt>
<dd>Michael Dayan</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Open and Reproducible Computational Modeling</dd>
<dt>Type</dt>
<dd>Lecture series</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd></dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd></dd>
<dt>Fellow</dt>
<dd>Paula Sanz-Leon</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Princeton Handbook for Reproducible Neuroimaging (fMRI)</dd>
<dt>Type</dt>
<dd>Document</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>Target Audience: graduate students, postdocs in psych and neurobio</dd>
<dt>Keywords</dt>
<dd>best practices for building reproducible workflow, BIDS, data management, data analyses</dd>
<dt>Links</dt>
<dd><a href="https://brainhack-princeton.github.io/handbook/" target="_blank">https://brainhack-princeton.github.io/handbook/</a><br><a href="https://github.com/brainhack-princeton/handbook" target="_blank">https://github.com/brainhack-princeton/handbook</a><br></dd>
<dt>Fellow</dt>
<dd>Sam Nastase</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Reproducibility science and methodologies</dd>
<dt>Type</dt>
<dd>Course</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>grad students, post docs</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://docs.google.com/document/d/1I4U9E_5fvJ2BSSAux_PPQvr6QavR6g1burSyIACXuKI/edit#heading=h.qm1rn5lf4l02" target="_blank">https://docs.google.com/document/d/1I4U9E_5fvJ2BSSAux_PPQvr6QavR6g1burSyIACXuKI/edit#heading=h.qm1rn5lf4l02</a><br></dd>
<dt>Fellow</dt>
<dd>Jennifer Legault</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Reproducible Computation Environments</dd>
<dt>Type</dt>
<dd>Video tutorial</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>postdocs, Neuroimaging grad students</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://uicapture.hosted.panopto.com/Panopto/Pages/Viewer.aspx?id=0640440b-c7ab-46c7-9bca-afdc00f914e6" target="_blank">https://uicapture.hosted.panopto.com/Panopto/Pages/Viewer.aspx?id=0640440b-c7ab-46c7-9bca-afdc00f914e6</a><br></dd>
<dt>Fellow</dt>
<dd>Avery Van De Water</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Reproducible Data Management with DataLad</dd>
<dt>Type</dt>
<dd>Talk</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>Researchers, Infrastructure managers</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://onedrive.live.com/?authkey=%21AFsNiGzveqZ750s&id=86184EF59C004002%21416672&cid=86184EF59C004002&parId=root&parQt=sharedby&o=OneUp" target="_blank">https://onedrive.live.com/?authkey=%21AFsNiGzveqZ750s&id=86184EF59C004002%21416672&cid=86184EF59C004002&parId=root&parQt=sharedby&o=OneUp</a><br></dd>
<dt>Fellow</dt>
<dd>Julian Kosciessa</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Reproducible Data Management with DataLad</dd>
<dt>Type</dt>
<dd>Talk</dd>
<dt>Description</dt>
<dd>k.</dd>
<dt>Audience</dt>
<dd>Researchers, Infrastructure managers</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://onedrive.live.com/?authkey=%21AANsp4ZosaSOK2o&id=86184EF59C004002%21416988&cid=86184EF59C004002&parId=root&parQt=sharedby&o=OneUp" target="_blank">https://onedrive.live.com/?authkey=%21AANsp4ZosaSOK2o&id=86184EF59C004002%21416988&cid=86184EF59C004002&parId=root&parQt=sharedby&o=OneUp</a><br></dd>
<dt>Fellow</dt>
<dd>Julian Kosciessa</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Reproducible Neuroimaging - open source guide</dd>
<dt>Type</dt>
<dd>Guide</dd>
<dt>Description</dt>
<dd>Reproducible neuroimaging guide in Polish.</dd>
<dt>Audience</dt>
<dd></dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd></dd>
<dt>Fellow</dt>
<dd>Karolina Finc</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Reproducible Neuroimaging w/Connectome Mapper 3 Training</dd>
<dt>Type</dt>
<dd>Workshop</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>postdocs -psych to electr engineering, phd students</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://drive.google.com/file/d/1BkZvAyGpRXpgOPtt9wOVjaWIRNquQOjl/view" target="_blank">https://drive.google.com/file/d/1BkZvAyGpRXpgOPtt9wOVjaWIRNquQOjl/view</a><br></dd>
<dt>Fellow</dt>
<dd>Sebastien Tourbier</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Reproducible Neuroimaging, tutorial guide</dd>
<dt>Type</dt>
<dd>Tutorial</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>cog sci students</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://github.com/compneuro-ncu/reproducible-neuroimaging" target="_blank">https://github.com/compneuro-ncu/reproducible-neuroimaging</a><br></dd>
<dt>Fellow</dt>
<dd>Karolina Finc</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>ReproNim concepts</dd>
<dt>Type</dt>
<dd>Workshop</dd>
<dt>Description</dt>
<dd>Lap workshop on ReproNim.</dd>
<dt>Audience</dt>
<dd></dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd></dd>
<dt>Fellow</dt>
<dd>David Smith</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>ReproRehab: Reproducible Rehabilitation Research Education Program</dd>
<dt>Type</dt>
<dd>Course</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>MS and PhD students, Rehab researchers</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://www.reprorehab.usc.edu/" target="_blank">https://www.reprorehab.usc.edu/</a><br><a href="https://github.com/npnl/OT699" target="_blank">https://github.com/npnl/OT699</a><br></dd>
<dt>Fellow</dt>
<dd>Sook-Lei Liew</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Research Data Management workshop at MPI Berlin</dd>
<dt>Type</dt>
<dd>Workshop recording</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>researchers all stages</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://www.youtube.com/watch?v=fL3DWzSWFL8" target="_blank">https://www.youtube.com/watch?v=fL3DWzSWFL8</a><br></dd>
<dt>Fellow</dt>
<dd>Adina Wagner</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Research Imaging Informatics</dd>
<dt>Type</dt>
<dd>Course</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>grad students biomed informatics</dd>
<dt>Keywords</dt>
<dd>imaging, informatics, workflows, containers, analytics, FAIR, data sharing</dd>
<dt>Links</dt>
<dd><a href="https://docs.google.com/document/d/1J-wCg62yIJNCdZd_bTDYkOWCXn0eqD1j7l17MQlE4qM/edit" target="_blank">https://docs.google.com/document/d/1J-wCg62yIJNCdZd_bTDYkOWCXn0eqD1j7l17MQlE4qM/edit</a><br></dd>
<dt>Fellow</dt>
<dd>Aaron Kemp</dd>
</dl>
</div>
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>Reusable (big) data management with DataLad</dd>
<dt>Type</dt>
<dd>Talk</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd>Researchers, Infrastructure managers</dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://1drv.ms/b/s!AgJAAJz1ThiGms0Vdo-WifbI8FKPOA?e=ourGa2" target="_blank">https://1drv.ms/b/s!AgJAAJz1ThiGms0Vdo-WifbI8FKPOA?e=ourGa2</a><br></dd>
<dt>Fellow</dt>
<dd>Julian Kosciessa</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-sm-6 resource">
<dl>
<dt>Title</dt>
<dd>syllabus for creating Univ.Del. Reproducibility Handbook</dd>
<dt>Type</dt>
<dd>Workshop syllabus</dd>
<dt>Description</dt>
<dd></dd>
<dt>Audience</dt>
<dd></dd>
<dt>Keywords</dt>
<dd></dd>
<dt>Links</dt>
<dd><a href="https://docs.google.com/document/d/1VBMtoBSuviYTDY5AdaoqIFBrHlBt6NmBToDVGkTexG4/edit#heading=h.g63wsqcq2bbh" target="_blank">https://docs.google.com/document/d/1VBMtoBSuviYTDY5AdaoqIFBrHlBt6NmBToDVGkTexG4/edit#heading=h.g63wsqcq2bbh</a><br></dd>
<dt>Fellow</dt>
<dd>Jennifer Legault</dd>
</dl>
</div>