-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.html
1815 lines (1024 loc) · 55.3 KB
/
team.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>
<!-- saved from url=(0027)https://greenelab.com/team/ -->
<html lang="en" data-dark="false"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script type="text/javascript" async="" src="./Team _ The Greene Lab_files/analytics.js"></script><script type="text/javascript" async="" src="./Team _ The Greene Lab_files/js"></script><script async="" src="./Team _ The Greene Lab_files/js(1)"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-20583020-3');
</script>
<!--
put your search engine verification (e.g. Google Search Console) tag here
-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Team | The Greene Lab</title>
<style data-tippy-stylesheet="">.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}</style><link rel="icon" href="https://greenelab.com/images/icon.png">
<meta name="title" content="Team">
<meta name="description" content="Where data and biology meet">
<meta property="og:title" content="Team">
<meta property="og:site_title" content="The Greene Lab">
<meta property="og:description" content="Where data and biology meet">
<meta property="og:url" content="">
<meta property="og:image" content="/images/share.jpg">
<meta property="og:locale" content="en_US">
<meta property="twitter:title" content="Team">
<meta property="twitter:description" content="Where data and biology meet">
<meta property="twitter:url" content="">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:image" content="/images/share.jpg">
<meta property="og:type" content="website">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Team",
"description": "Where data and biology meet",
"headline": "Team",
"publisher": {
"@type": "Organization",
"logo": { "@type": "ImageObject", "url": "/images/icon.png" }
},
"url": ""
}
</script>
<link rel="alternate" type="application/rss+xml" href="https://greenelab.com/feed.xml">
<!-- Google Fonts -->
<!-- automatically get url from fonts used in theme file -->
<link rel="preconnect" href="https://fonts.gstatic.com/">
<link href="./Team _ The Greene Lab_files/css2" rel="stylesheet">
<!-- Font Awesome icons (load asynchronously due to size) -->
<link href="./Team _ The Greene Lab_files/all.css" rel="stylesheet" as="style" onload="this.onload = null; this.rel = 'stylesheet';">
<noscript>
<link href="https://use.fontawesome.com/releases/v6.3.0/css/all.css" rel="stylesheet">
</noscript>
<!-- third party styles -->
<!-- https://stylishthemes.github.io/Syntax-Themes/pygments/ -->
<link href="./Team _ The Greene Lab_files/pygments-tomorrow-night-eighties.css" rel="stylesheet">
<!-- include all sass in styles folder -->
<link href="./Team _ The Greene Lab_files/-theme.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/alert.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/all(1).css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/anchor.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/background.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/body.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/bold.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/button.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/card.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/checkbox.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/citation.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/code.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/cols.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/dark-toggle.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/feature.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/figure.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/float.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/font.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/footer.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/form.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/grid.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/header.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/heading.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/highlight.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/icon.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/image.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/link.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/list.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/main.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/paragraph.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/portrait.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/post-excerpt.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/post-info.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/post-nav.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/quote.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/rule.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/search-box.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/search-info.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/section.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/table.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/tags.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/textbox.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/tooltip.css" rel="stylesheet">
<link href="./Team _ The Greene Lab_files/util.css" rel="stylesheet">
<!-- include all css in styles folder -->
<!-- third party scripts -->
<script src="./Team _ The Greene Lab_files/core@2" defer=""></script>
<script src="./Team _ The Greene Lab_files/tippy.js@6" defer=""></script>
<script src="./Team _ The Greene Lab_files/mark.js@8" defer=""></script>
<!-- include all js in scripts folder -->
<script src="./Team _ The Greene Lab_files/anchors.js"></script>
<script src="./Team _ The Greene Lab_files/dark-mode.js"></script>
<script src="./Team _ The Greene Lab_files/fetch-tags.js"></script>
<script src="./Team _ The Greene Lab_files/search.js"></script>
<script src="./Team _ The Greene Lab_files/site-search.js"></script>
<script src="./Team _ The Greene Lab_files/tooltip.js"></script>
</head>
<body>
<header class="background" style="--image: url('/images/backgrounds/laptop-paper.jpg')" data-dark="true">
<a href="https://greenelab.com/" class="home">
<span class="logo">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-75 -50 150 100">
<style>
.ring,
.text {
animation-duration: 2s;
animation-timing-function: ease;
animation-fill-mode: forwards;
}
#ring_1 {
animation-name: ring_1;
}
#ring_2 {
animation-name: ring_2;
}
#ring_3 {
animation-name: ring_3;
}
#ring_4 {
animation-name: ring_4;
}
#ring_5 {
animation-name: ring_5;
}
@keyframes ring_1 {
0% {
opacity: 0;
transform: rotate(-10deg);
}
40% {
opacity: 0;
transform: rotate(-10deg);
}
80% {
opacity: 1;
transform: rotate(0deg);
}
}
@keyframes ring_2 {
0% {
opacity: 0;
transform: rotate(30deg);
}
30% {
opacity: 0;
transform: rotate(30deg);
}
70% {
opacity: 1;
transform: rotate(0deg);
}
}
@keyframes ring_3 {
0% {
opacity: 0;
transform: rotate(-50deg);
}
20% {
opacity: 0;
transform: rotate(-50deg);
}
60% {
opacity: 1;
transform: rotate(0deg);
}
}
@keyframes ring_4 {
0% {
opacity: 0;
transform: rotate(70deg);
}
10% {
opacity: 0;
transform: rotate(70deg);
}
50% {
opacity: 1;
transform: rotate(0deg);
}
}
@keyframes ring_5 {
0% {
opacity: 0;
transform: rotate(-90deg);
}
40% {
opacity: 1;
transform: rotate(0deg);
}
}
#text_1 {
animation-name: text_1;
}
#text_2 {
animation-name: text_2;
}
@keyframes text_1 {
0% {
opacity: 0;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes text_2 {
0% {
opacity: 0;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
<g transform="translate(-22,0)">
<g class="ring" id="ring_1">
<path fill="none" stroke="#00bcd4" stroke-width="5.5" transform="scale(1)" d="
M -41.04 -18.47 A 45.00 45.00 0 0 0 -42.96 -13.39
"></path>
</g>
<g class="ring" id="ring_2">
<path fill="none" stroke="#00bcd4" stroke-width="5.5" transform="scale(0.7952707288)" d="
M -18.47 -41.04 A 45.00 45.00 0 0 0 -23.28 -38.51
M -35.42 -27.75 A 45.00 45.00 0 0 0 -38.51 -23.28
M -41.04 -18.47 A 45.00 45.00 0 0 0 -42.96 -13.39
M -44.92 2.72 A 45.00 45.00 0 0 0 -44.26 8.11
M -38.51 23.28 A 45.00 45.00 0 0 0 -35.42 27.75
"></path>
</g>
<g class="ring" id="ring_3">
<path fill="none" stroke="#009688" stroke-width="5.5" transform="scale(0.632455532)" d="
M 23.28 -38.51 A 45.00 45.00 0 0 0 18.47 -41.04
M 2.72 -44.92 A 45.00 45.00 0 0 0 -2.72 -44.92
M -8.11 -44.26 A 45.00 45.00 0 0 0 -13.39 -42.96
M -18.47 -41.04 A 45.00 45.00 0 0 0 -23.28 -38.51
M -27.75 -35.42 A 45.00 45.00 0 0 0 -31.82 -31.82
M -35.42 -27.75 A 45.00 45.00 0 0 0 -38.51 -23.28
M -41.04 -18.47 A 45.00 45.00 0 0 0 -42.96 -13.39
M -44.26 -8.11 A 45.00 45.00 0 0 0 -44.92 -2.72
M -44.92 2.72 A 45.00 45.00 0 0 0 -44.26 8.11
M -42.96 13.39 A 45.00 45.00 0 0 0 -41.04 18.47
M -38.51 23.28 A 45.00 45.00 0 0 0 -35.42 27.75
M -31.82 31.82 A 45.00 45.00 0 0 0 -27.75 35.42
M -13.39 42.96 A 45.00 45.00 0 0 0 -8.11 44.26
M -2.72 44.92 A 45.00 45.00 0 0 0 2.72 44.92
M 18.47 41.04 A 45.00 45.00 0 0 0 23.28 38.51
"></path>
</g>
<g class="ring" id="ring_4">
<path fill="none" stroke="#009688" stroke-width="5.5" transform="scale(0.5029733719)" d="
M 23.28 -38.51 A 45.00 45.00 0 0 0 18.47 -41.04
M 13.39 -42.96 A 45.00 45.00 0 0 0 8.11 -44.26
M -8.11 -44.26 A 45.00 45.00 0 0 0 -13.39 -42.96
M -18.47 -41.04 A 45.00 45.00 0 0 0 -23.28 -38.51
M -27.75 -35.42 A 45.00 45.00 0 0 0 -31.82 -31.82
M -35.42 -27.75 A 45.00 45.00 0 0 0 -38.51 -23.28
M -41.04 -18.47 A 45.00 45.00 0 0 0 -42.96 -13.39
M -44.26 -8.11 A 45.00 45.00 0 0 0 -44.92 -2.72
M -42.96 13.39 A 45.00 45.00 0 0 0 -41.04 18.47
M -38.51 23.28 A 45.00 45.00 0 0 0 -35.42 27.75
M -31.82 31.82 A 45.00 45.00 0 0 0 -27.75 35.42
M -23.28 38.51 A 45.00 45.00 0 0 0 -18.47 41.04
M -13.39 42.96 A 45.00 45.00 0 0 0 -8.11 44.26
M -2.72 44.92 A 45.00 45.00 0 0 0 2.72 44.92
M 8.11 44.26 A 45.00 45.00 0 0 0 13.39 42.96
M 18.47 41.04 A 45.00 45.00 0 0 0 23.28 38.51
"></path>
</g>
<g class="ring" id="ring_5">
<path fill="none" stroke="#4caf50" stroke-width="5.5" transform="scale(0.4)" d="
M 23.28 -38.51 A 45.00 45.00 0 0 0 18.47 -41.04
M 13.39 -42.96 A 45.00 45.00 0 0 0 8.11 -44.26
M 2.72 -44.92 A 45.00 45.00 0 0 0 -2.72 -44.92
M -8.11 -44.26 A 45.00 45.00 0 0 0 -13.39 -42.96
M -18.47 -41.04 A 45.00 45.00 0 0 0 -23.28 -38.51
M -27.75 -35.42 A 45.00 45.00 0 0 0 -31.82 -31.82
M -41.04 -18.47 A 45.00 45.00 0 0 0 -42.96 -13.39
M -44.26 -8.11 A 45.00 45.00 0 0 0 -44.92 -2.72
M -44.92 2.72 A 45.00 45.00 0 0 0 -44.26 8.11
M -42.96 13.39 A 45.00 45.00 0 0 0 -41.04 18.47
M -23.28 38.51 A 45.00 45.00 0 0 0 -18.47 41.04
M -13.39 42.96 A 45.00 45.00 0 0 0 -8.11 44.26
M 8.11 44.26 A 45.00 45.00 0 0 0 13.39 42.96
M 18.47 41.04 A 45.00 45.00 0 0 0 23.28 38.51
"></path>
</g>
</g>
<g class="text" id="text_1">
<!-- Montserrat, semi-bold (600) -->
<g aria-label="Greene" transform="translate(16.5,0) scale(1.65)" fill="#ffffff">
<!-- add inner "caret"/"hook" to capital G, missing in Montserrat -->
<path d="M -23 -0.5 H -18.770625 v 1.8 H -23 z"></path>
<path d="M -20.738625,-0.10770324 H -18.770625 V 4.356297 Q -19.634625,5.044297 -20.786625,5.412297 -21.938625,5.780297 -23.154625,5.780297 -24.866625,5.780297 -26.242625,5.044297 -27.618625,4.292297 -28.402625,2.980297 -29.186625,1.6682968 -29.186625,0.02029672 -29.186625,-1.627703 -28.402625,-2.939703 -27.618625,-4.251703 -26.242625,-4.987703 -24.850625,-5.739703 -23.122625,-5.739703 -21.714625,-5.739703 -20.562625,-5.275703 -19.410625,-4.811703 -18.626625,-3.915703 L -19.938625,-2.635703 Q -21.218625,-3.915703 -23.026625,-3.915703 -24.210625,-3.915703 -25.138625,-3.419703 -26.050625,-2.923703 -26.578625,-2.027703 -27.090625,-1.131703 -27.090625,0.02029672 -27.090625,1.1402967 -26.578625,2.0362969 -26.050625,2.932297 -25.138625,3.444297 -24.210625,3.956297 -23.042625,3.956297 -21.730625,3.956297 -20.738625,3.380297 Z"></path>
<path d="M -14.330875,-1.675703 Q -13.466875,-3.019703 -11.290875,-3.019703 V -1.115703 Q -11.546875,-1.163703 -11.754875,-1.163703 -12.922875,-1.163703 -13.578875,-0.47570314 -14.234875,0.19629668 -14.234875,1.4762968 V 5.620297 H -16.234875 V -2.923703 H -14.330875 Z"></path>
<path d="M -1.640375,1.3962968 Q -1.640375,1.6042968 -1.672375,1.9882969 H -8.376375 Q -8.200375,2.932297 -7.464375,3.492297 -6.712375,4.036297 -5.608375,4.036297 -4.200375,4.036297 -3.288375,3.108297 L -2.216375,4.340297 Q -2.792375,5.028297 -3.672375,5.380297 -4.552375,5.732297 -5.656375,5.732297 -7.064375,5.732297 -8.136375,5.172297 -9.208375,4.612297 -9.800375,3.620297 -10.376375,2.612297 -10.376375,1.3482968 -10.376375,0.1002967 -9.816375,-0.89170304 -9.240375,-1.899703 -8.232375,-2.459703 -7.224375,-3.019703 -5.960375,-3.019703 -4.712375,-3.019703 -3.736375,-2.459703 -2.744375,-1.915703 -2.200375,-0.90770304 -1.640375,0.0842967 -1.640375,1.3962968 Z M -5.960375,-1.419703 Q -6.920375,-1.419703 -7.592375,-0.84370306 -8.248375,-0.2837032 -8.392375,0.66029668 H -3.544375 Q -3.672375,-0.2677032 -4.328375,-0.84370306 -4.984375,-1.419703 -5.960375,-1.419703 Z"></path>
<path d="M 8.297125,1.3962968 Q 8.297125,1.6042968 8.265125,1.9882969 H 1.561125 Q 1.737125,2.932297 2.473125,3.492297 3.225125,4.036297 4.329125,4.036297 5.737125,4.036297 6.649125,3.108297 L 7.721125,4.340297 Q 7.145125,5.028297 6.265125,5.380297 5.385125,5.732297 4.281125,5.732297 2.873125,5.732297 1.801125,5.172297 0.729125,4.612297 0.137125,3.620297 -0.438875,2.612297 -0.438875,1.3482968 -0.438875,0.1002967 0.121125,-0.89170304 0.697125,-1.899703 1.705125,-2.459703 2.713125,-3.019703 3.977125,-3.019703 5.225125,-3.019703 6.201125,-2.459703 7.193125,-1.915703 7.737125,-0.90770304 8.297125,0.0842967 8.297125,1.3962968 Z M 3.977125,-1.419703 Q 3.017125,-1.419703 2.345125,-0.84370306 1.689125,-0.2837032 1.545125,0.66029668 H 6.393125 Q 6.265125,-0.2677032 5.609125,-0.84370306 4.953125,-1.419703 3.977125,-1.419703 Z"></path>
<path d="M 15.050625,-3.019703 Q 16.666625,-3.019703 17.642625,-2.075703 18.618625,-1.131703 18.618625,0.72429668 V 5.620297 H 16.618625 V 0.98029668 Q 16.618625,-0.13970324 16.090625,-0.6997031 15.562625,-1.275703 14.586625,-1.275703 13.482625,-1.275703 12.842625,-0.60370312 12.202625,0.0522967 12.202625,1.3002968 V 5.620297 H 10.202625 V -2.923703 H 12.106625 V -1.819703 Q 12.602625,-2.411703 13.354625,-2.715703 14.106625,-3.019703 15.050625,-3.019703 Z"></path>
<path d="M 29.297125,1.3962968 Q 29.297125,1.6042968 29.265125,1.9882969 H 22.561125 Q 22.737125,2.932297 23.473125,3.492297 24.225125,4.036297 25.329125,4.036297 26.737125,4.036297 27.649125,3.108297 L 28.721125,4.340297 Q 28.145125,5.028297 27.265125,5.380297 26.385125,5.732297 25.281125,5.732297 23.873125,5.732297 22.801125,5.172297 21.729125,4.612297 21.137125,3.620297 20.561125,2.612297 20.561125,1.3482968 20.561125,0.1002967 21.121125,-0.89170304 21.697125,-1.899703 22.705125,-2.459703 23.713125,-3.019703 24.977125,-3.019703 26.225125,-3.019703 27.201125,-2.459703 28.193125,-1.915703 28.737125,-0.90770304 29.297125,0.0842967 29.297125,1.3962968 Z M 24.977125,-1.419703 Q 24.017125,-1.419703 23.345125,-0.84370306 22.689125,-0.2837032 22.545125,0.66029668 H 27.393125 Q 27.265125,-0.2677032 26.609125,-0.84370306 25.953125,-1.419703 24.977125,-1.419703 Z"></path>
</g>
</g>
<g class="text" id="text_2">
<!-- Montserrat, normal (400) -->
<g aria-label="Lab" transform="translate(37.15,21) scale(1.5)" fill="#ffffff">
<path d="M -13.61279,-5.7266086 H -12.42879 V 4.4493914 H -6.1567904 V 5.4733914 H -13.61279 Z"></path>
<path d="M -1.4400404,-3.0066086 Q 0.20795959,-3.0066086 1.0879596,-2.1746086 1.9679596,-1.3586086 1.9679596,0.25739141 V 5.4733914 H 0.87995959 V 4.1613914 Q 0.49595959,4.8173914 -0.25604041,5.1853914 -0.99204041,5.5533914 -2.0160404,5.5533914 -3.4240404,5.5533914 -4.2560404,4.8813914 -5.0880404,4.2093914 -5.0880404,3.1053914 -5.0880404,2.0333914 -4.3200404,1.3773914 -3.5360404,0.72139141 -1.8400404,0.72139141 H 0.83195959 V 0.20939141 Q 0.83195959,-0.87860859 0.22395959,-1.4386086 -0.38404041,-2.0146086 -1.5520404,-2.0146086 -2.3520404,-2.0146086 -3.0880404,-1.7426086 -3.8240404,-1.4866086 -4.3520404,-1.0226086 L -4.8640404,-1.8706086 Q -4.2240404,-2.4146086 -3.3280404,-2.7026086 -2.4320404,-3.0066086 -1.4400404,-3.0066086 Z M -1.8400404,4.6573914 Q -0.88004041,4.6573914 -0.19204041,4.2253914 0.49595959,3.7773914 0.83195959,2.9453914 V 1.5693914 H -1.8080404 Q -3.9680404,1.5693914 -3.9680404,3.0733914 -3.9680404,3.8093914 -3.4080404,4.2413914 -2.8480404,4.6573914 -1.8400404,4.6573914 Z"></path>
<path d="M 9.3894596,-3.0066086 Q 10.57346,-3.0066086 11.53346,-2.4626086 12.49346,-1.9346086 13.03746,-0.95860859 13.58146,0.01739141 13.58146,1.2653914 13.58146,2.5133914 13.03746,3.4893914 12.49346,4.4653914 11.53346,5.0093914 10.57346,5.5533914 9.3894596,5.5533914 8.3334596,5.5533914 7.4854596,5.1053914 6.6534596,4.6573914 6.1414596,3.8093914 V 5.4733914 H 5.0534596 V -6.3986086 H 6.1894596 V -1.3426086 Q 6.7174596,-2.1586086 7.5334596,-2.5746086 8.3654596,-3.0066086 9.3894596,-3.0066086 Z M 9.3094596,4.5453914 Q 10.18946,4.5453914 10.90946,4.1453914 11.62946,3.7293914 12.02946,2.9773914 12.44546,2.2253914 12.44546,1.2653914 12.44546,0.30539141 12.02946,-0.44660859 11.62946,-1.1986086 10.90946,-1.5986086 10.18946,-2.0146086 9.3094596,-2.0146086 8.4134596,-2.0146086 7.6934596,-1.5986086 6.9894596,-1.1986086 6.5734596,-0.44660859 6.1734596,0.30539141 6.1734596,1.2653914 6.1734596,2.2253914 6.5734596,2.9773914 6.9894596,3.7293914 7.6934596,4.1453914 8.4134596,4.5453914 9.3094596,4.5453914 Z"></path>
</g>
</g>
</svg>
</span>
</a>
<input class="nav-toggle" type="checkbox" aria-label="show/hide nav">
<nav>
<a href="https://greenelab.com/research/" data-tooltip="Published works">
Research
</a>
<a href="https://greenelab.com/tools/" data-tooltip="Software, datasets, and more">
Tools
</a>
<a href="https://greenelab.com/team/" data-tooltip="About our team">
Team
</a>
<a href="https://greenelab.com/blog/" data-tooltip="Musings and miscellany">
Blog
</a>
<a href="https://greenelab.com/contact/" data-tooltip="Email, address, and location">
Contact
</a>
</nav>
</header>
<main>
<!--
modify main content of page:
- add section breaks
- attach section properties
- wrap each table in div to allow for scrolling
- filter out blank sections
-->
<section class="background" data-size="page" id="team">
<h1>
<i class="icon fa-solid fa-users"></i>Team<a class="icon fa-solid fa-link anchor" href="https://greenelab.com/team/#team" aria-label="link to this section"></a></h1>
<p>Our lab is made up of a highly engaged and collaborative team of researchers.
We recognize that diverse teams do better research.
We foster an environment where team members are treated equally, and where we respect and admire our differences.
The team includes postdocs, students at all levels, staff, and our lab mascots.</p>
<div class="portrait-wrapper">
<a href="https://greenelab.com/members/casey-greene.html" class="portrait" data-style="" aria-label="Casey Greene">
<img src="./Team _ The Greene Lab_files/casey.jpg" class="portrait-image" alt="member portrait" loading="lazy" onerror="this.src = '/images/fallback.svg'; this.onerror = null;">
<span class="portrait-text">
<span class="portrait-name">
Casey Greene
</span>
<span class="portrait-role">
<i class="icon fa-solid fa-microscope"></i>
<span>Principal Investigator</span>
</span>
</span>
</a>
</div>
<div class="portrait-wrapper">
<a href="https://greenelab.com/members/halie-rando.html" class="portrait" data-style="" aria-label="Halie Rando">
<img src="./Team _ The Greene Lab_files/halie.jpg" class="portrait-image" alt="member portrait" loading="lazy" onerror="this.src = '/images/fallback.svg'; this.onerror = null;">
<span class="portrait-text">
<span class="portrait-name">
Halie Rando
</span>
<span class="portrait-role">
<i class="icon fa-solid fa-glasses"></i>
<span>Postdoctoral Researcher</span>
</span>
</span>
</a>
</div>
<div class="portrait-wrapper">
<a href="https://greenelab.com/members/natalie-davidson.html" class="portrait" data-style="" aria-label="Natalie Davidson">
<img src="./Team _ The Greene Lab_files/natalie_davidson.jpg" class="portrait-image" alt="member portrait" loading="lazy" onerror="this.src = '/images/fallback.svg'; this.onerror = null;">
<span class="portrait-text">
<span class="portrait-name">
Natalie Davidson
</span>
<span class="portrait-role">
<i class="icon fa-solid fa-glasses"></i>
<span>Postdoctoral Researcher</span>
</span>
</span>
</a>
</div>
<div class="portrait-wrapper">
<a href="https://greenelab.com/members/adriana-ivich.html" class="portrait" data-style="" aria-label="Adriana Ivich">
<img src="./Team _ The Greene Lab_files/adriana.jpeg" class="portrait-image" alt="member portrait" loading="lazy" onerror="this.src = '/images/fallback.svg'; this.onerror = null;">
<span class="portrait-text">
<span class="portrait-name">
Adriana Ivich
</span>
<span class="portrait-role">
<i class="icon fa-solid fa-graduation-cap"></i>
<span>PhD Student</span>
</span>
</span>
</a>
</div>
<div class="portrait-wrapper">
<a href="https://greenelab.com/members/ariel-hippen.html" class="portrait" data-style="" aria-label="Ariel Hippen">
<img src="./Team _ The Greene Lab_files/ariel.jpg" class="portrait-image" alt="member portrait" loading="lazy" onerror="this.src = '/images/fallback.svg'; this.onerror = null;">
<span class="portrait-text">
<span class="portrait-name">
Ariel Hippen
</span>
<span class="portrait-role">
<i class="icon fa-solid fa-graduation-cap"></i>
<span>PhD Student</span>
</span>
</span>
</a>
</div>
<div class="portrait-wrapper">
<a href="https://greenelab.com/members/jake-crawford.html" class="portrait" data-style="" aria-label="Jake Crawford">
<img src="./Team _ The Greene Lab_files/jake.jpg" class="portrait-image" alt="member portrait" loading="lazy" onerror="this.src = '/images/fallback.svg'; this.onerror = null;">
<span class="portrait-text">
<span class="portrait-name">
Jake Crawford
</span>
<span class="portrait-role">
<i class="icon fa-solid fa-graduation-cap"></i>
<span>PhD Student</span>
</span>
</span>
</a>
</div>
<div class="portrait-wrapper">
<a href="https://greenelab.com/members/vincent-rubinetti.html" class="portrait" data-style="" aria-label="Vincent Rubinetti">
<img src="./Team _ The Greene Lab_files/vince.jpg" class="portrait-image" alt="member portrait" loading="lazy" onerror="this.src = '/images/fallback.svg'; this.onerror = null;">
<span class="portrait-text">
<span class="portrait-name">
Vincent Rubinetti
</span>
<span class="portrait-role">
<i class="icon fa-solid fa-code"></i>
<span>Programmer</span>
</span>
</span>
</a>
</div>
</section>
<section class="background" data-size="1" data-dark="true">
<!--
background: ;
dark: true;
size: 1;
-->
<p>We work with a wide range of outstanding groups from around the world, and we’re always on the lookout for new and unique perspectives.
We want to push the frontier of data science and train the next generation of data scientists.</p>
<div class="button-wrapper">
<a class="button" href="https://greenelab.com/join" data-style="button" aria-label="fa-solid fa-handshake-angle">
<i class="icon fa-solid fa-handshake-angle"></i>
<span>Join the Team</span>
</a>
</div>
</section>
<section class="background" data-size="page" id="alumni">
<!--
background: ;
dark: ;
size: ;
-->
<h2>Alumni<a class="icon fa-solid fa-link anchor" href="https://greenelab.com/team/#alumni" aria-label="link to this section"></a></h2>
<p>Gone but never forgotten.
These are past lab members who have moved on to the <a href="https://www.alexslemonade.org/data-lab">Childhood Cancer Data Lab</a>, other school programs, new jobs, or elsewhere.
They have all made lasting contributions to science and to our hearts. ❤️</p>
<div class="portrait-wrapper">
<a href="https://greenelab.com/members/daniel-himmelstein.html" class="portrait" data-style="small" aria-label="Daniel Himmelstein">
<img src="./Team _ The Greene Lab_files/daniel.jpg" class="portrait-image" alt="member portrait" loading="lazy" onerror="this.src = '/images/fallback.svg'; this.onerror = null;">
<span class="portrait-text">
<span class="portrait-name">
Daniel Himmelstein
</span>
<span class="portrait-role">
<i class="icon fa-solid fa-glasses"></i>
<span>Postdoctoral Researcher</span>
</span>
</span>
</a>
</div>
<div class="portrait-wrapper">
<a href="https://greenelab.com/members/jaclyn-taroni.html" class="portrait" data-style="small" aria-label="Jaclyn Taroni">
<img src="./Team _ The Greene Lab_files/jaclyn.jpg" class="portrait-image" alt="member portrait" loading="lazy" onerror="this.src = '/images/fallback.svg'; this.onerror = null;">
<span class="portrait-text">
<span class="portrait-name">
Jaclyn Taroni
</span>
<span class="portrait-role">
<i class="icon fa-solid fa-glasses"></i>
<span>Postdoctoral Researcher</span>
</span>
</span>
</a>
</div>
<div class="portrait-wrapper">
<a href="https://greenelab.com/members/milton-pividori.html" class="portrait" data-style="small" aria-label="Milton Pividori">
<img src="./Team _ The Greene Lab_files/milton.jpg" class="portrait-image" alt="member portrait" loading="lazy" onerror="this.src = '/images/fallback.svg'; this.onerror = null;">
<span class="portrait-text">
<span class="portrait-name">
Milton Pividori
</span>
<span class="portrait-role">
<i class="icon fa-solid fa-glasses"></i>
<span>Postdoctoral Researcher</span>
</span>
</span>
</a>
</div>
<div class="portrait-wrapper">
<a href="https://greenelab.com/members/qiwen-hu.html" class="portrait" data-style="small" aria-label="Qiwen Hu">
<img src="./Team _ The Greene Lab_files/qiwen.jpg" class="portrait-image" alt="member portrait" loading="lazy" onerror="this.src = '/images/fallback.svg'; this.onerror = null;">
<span class="portrait-text">
<span class="portrait-name">
Qiwen Hu
</span>
<span class="portrait-role">
<i class="icon fa-solid fa-glasses"></i>
<span>Postdoctoral Researcher</span>
</span>
</span>
</a>
</div>
<div class="portrait-wrapper">
<a href="https://greenelab.com/members/steven-foltz.html" class="portrait" data-style="small" aria-label="Steven Foltz">
<img src="./Team _ The Greene Lab_files/steven.jpg" class="portrait-image" alt="member portrait" loading="lazy" onerror="this.src = '/images/fallback.svg'; this.onerror = null;">
<span class="portrait-text">
<span class="portrait-name">
Steven Foltz
</span>
<span class="portrait-role">
<i class="icon fa-solid fa-glasses"></i>
<span>Postdoctoral Researcher</span>
</span>
</span>
</a>
</div>
<div class="portrait-wrapper">
<a href="https://greenelab.com/members/taylor-reiter.html" class="portrait" data-style="small" aria-label="Taylor Reiter">
<img src="./Team _ The Greene Lab_files/taylor_reiter.jpg" class="portrait-image" alt="member portrait" loading="lazy" onerror="this.src = '/images/fallback.svg'; this.onerror = null;">