-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoverview.html
703 lines (353 loc) · 23.3 KB
/
overview.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>research overview | Statistical Diversity Lab</title>
<meta name="description" lang="en-us" content="" />
<link rel="canon_test" href="overview.html">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="javascripts/jquery-1.11.0.min.js%3F1391410894" type="text/javascript"></script>
<script src="javascripts/jquery.simplemodal.1.4.4.min.js%3F1387826925" type="text/javascript"></script>
<script src="javascripts/jquery-ui-1.10.3.custom.min.js%3F1388181381" type="text/javascript"></script>
<script type="text/javascript">
/* patch added 9/18/2018 by scott
* fix issue of link editing when ckeditor is opened in lightbox mode
* https://bizango.teamwork.com/#/tasks/11559149
*/
$.widget( "ui.dialog", $.ui.dialog, {
/*! jQuery UI - v1.10.2 - 2013-12-12
* http://bugs.jqueryui.com/ticket/9087#comment:27 - bugfix
* http://bugs.jqueryui.com/ticket/4727#comment:23 - bugfix
* allowInteraction fix to accommodate windowed editors
*/
_allowInteraction: function( event ) {
if ( this._super( event ) ) {
return true;
}
// address interaction issues with general iframes with the dialog
if ( event.target.ownerDocument != this.document[ 0 ] ) {
return true;
}
// address interaction issues with dialog window
if ( $( event.target ).closest( ".cke_dialog" ).length ) {
return true;
}
// address interaction issues with iframe based drop downs in IE
if ( $( event.target ).closest( ".cke" ).length ) {
return true;
}
},
/*! jQuery UI - v1.10.2 - 2013-10-28
* http://dev.ckeditor.com/ticket/10269 - bugfix
* moveToTop fix to accommodate windowed editors
*/
_moveToTop: function ( event, silent ) {
if ( !event || !this.options.modal ) {
this._super( event, silent );
}
}
});
</script>
<link href="https://fonts.googleapis.com/css?family=Exo+2:300,400,500,600,700" rel="stylesheet">
<link href="stylesheets/blocks/defaults.css%3F1694197450.css" media="screen" rel="stylesheet" type="text/css" />
<link href="stylesheets/sdi/site.css%3F1539372687.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body id="body_overview" class=" body_nothome ">
<div id="hero_frame" class="userBG tAr" >
<div class="page_frame group">
<a id="logo" href="index.html"></a>
<div id="utility_nav">
<img src="images/sites/sdi/headeremail.png" class="this">
<a href="tel:206.543.8027"><span class="icon-phone"></span>206.543.8027</a>
<a href="https://twitter.com/AmyDWillis" target="_BLANK" class="twitt"><span class="icon-twitter"></span></a>
<a href="https://github.com/adw96" target="_BLANK" class="git"><span class="icon-github"></span></a>
</div>
<div id="nav_frame">
<div id="nav">
<ul class="nav">
<li><a id="nav_publications" rel="publications" href="publications.html">publications</a></li>
<li><a id="nav_team" rel="team" href="team.html">team</a></li>
<li><a id="nav_software" rel="software" href="software.html">software</a></li>
<li><a id="nav_teaching" rel="teaching" href="teaching.html">teaching</a></li>
<li><a id="nav_blog" rel="blog" href="https://statdivlab.github.io/blog/">blog</a></li>
<li><a id="nav_overview" rel="overview" href="overview.html">research overview</a></li>
</ul>
</div>
<div id="mobile_nav">
<div class="icon">Menu ≡</div>
<ul class="nav">
<li><a id="nav_home" rel="home" href="index.html">home</a></li>
<li><a id="nav_publications" rel="publications" href="publications.html">publications</a></li>
<li><a id="nav_team" rel="team" href="team.html">team</a></li>
<li><a id="nav_software" rel="software" href="software.html">software</a></li>
<li><a id="nav_teaching" rel="teaching" href="teaching.html">teaching</a></li>
<li><a id="nav_blog" rel="blog" href="https://statdivlab.github.io/blog/">blog</a></li>
<li><a id="nav_overview" rel="overview" href="overview.html">research overview</a></li>
</ul>
</div>
<div class="rule"></div>
</div>
</div>
</div>
<div class="titlebar">
<div class="page_frame">
<div class="fourteen-col center tAc">
<div class="bizango_cms bizango_cms_content bizango_content_prose textdiv_prose" id="content_151424_prose" data-bizango='{"monkey":"data", "field":"prose", "object_type":"content", "cms_id":"151424", "label":"" , "tag":"div"}' >
<h2>research overview</h2>
</div>
</div>
</div>
</div>
<div data-sortable="151424">
<div class="block_container " data-content-id="151547">
<div class="block__bg-img block_container__bg-img" style="display:none;"></div>
<div id="151547" class="block block_id-151547 block_type__1-column padding-bottom__none background-position__center">
<div class="block__bg-img"></div>
<div class="page_frame group">
<style>
</style>
<script defer="defer" src="javascripts/blocks/parallax.min.js%3F1495829387" type="text/javascript"></script>
<script>
</script>
<div class="all-cols-wrap ">
<div class="col-1 ">
<div class="element__attachment element-0 ">
</div>
<div class="element__image element-1 ">
</div>
<div class="element__text element-2 ">
<div class="bizango_cms bizango_cms_content bizango_content_prose textdiv_prose" id="content_151547_prose" data-bizango='{"monkey":"data", "field":"prose", "object_type":"content", "cms_id":"151547", "label":"" , "tag":"div"}' >
<h2><span style="color:#e92f57;">for statisticians</span></h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="block_container " data-content-id="151551">
<div class="block__bg-img block_container__bg-img" style="display:none;"></div>
<div id="151551" class="block block_id-151551 block_type__2-column-even padding-top__none background-position__center">
<div class="block__bg-img"></div>
<div class="page_frame group">
<style>
</style>
<script defer="defer" src="javascripts/blocks/parallax.min.js%3F1495829387" type="text/javascript"></script>
<script>
</script>
<div class="all-cols-wrap ">
<div class="col-1 col@tablet col-left@tablet">
<div class="element__image element-0 ">
</div>
<div class="element__text element-1 ">
<div class="bizango_cms bizango_cms_content bizango_content_prose textdiv_prose" id="content_151551_prose" data-bizango='{"monkey":"data", "field":"prose", "object_type":"content", "cms_id":"151551", "label":"" , "tag":"div"}' >
<p>The Statistical Diversity Lab (est. 2017), is my <a href="team.html">research group</a> in the Department of Biostatistics at the University of Washington. We apply our statistical training to develop methods for the analysis of biodiversity data, with a particular emphasis on the microbiome. Microbes play a critical role in a wide variety of human diseases and environmental outcomes, and manipulating the microbiome can be as easy as washing your hands or taking a probiotic. We believe that the microbiome is the most exciting frontier of human and environmental health research, and that's why it is the focus of our methods, theory and collaborative work.</p>
<p>My research background is in statistical inference on non-Euclidean metric spaces, discrete data models, applied probability, and hierarchical modelling. The more recent work of my group focuses on modeling relative abundance, diversity, phylogenetic uncertainty and batch effects, and developing statistical inference procedures for amplicon, whole-genome and metabolomic datasets. We believe that there are many un/underused data structures in microbial sequencing studies that have the potential to greatly improve microbiome modeling. We develop and sustain long-term collaborative relationships with outstanding microbial ecologists to keep our methodological and theoretical work relevant. Methodological development for microbial ecology demands expertise in compositional data analysis, networked data, high dimensional data, constrained estimation, and missing data, and we love learning from our colleagues in statistics, probability and applied math to expand our skills in these areas.</p>
<p> </p>
</div>
</div>
</div>
<div class="col-2 col@tablet col-right@tablet">
<div class="element__image element-0 ">
</div>
<div class="element__text element-1 ">
<div class="bizango_cms bizango_cms_content bizango_content_rich1 textdiv_rich1" id="content_151551_rich1" data-bizango='{"monkey":"data", "field":"rich1", "object_type":"content", "cms_id":"151551", "label":"" , "tag":"div"}' >
<div class="anyipsum-output"><p>We care about producing <a href="software.html">high-quality software</a> and making <a href="publications.html">our papers</a> reproducible. Please check out our <a href="https://github.com/statdivlab">github page</a> to find data and code for our papers. If you cannot find the resources you need to reproduce our results, contact us!</p>
<p>~ Amy D. Willis, Ph.D., Associate Professor</p>
<p> </p>
<p><br />
<u><strong>For prospective students</strong></u></p>
<p>Unfortunately <u>I cannot admit students directly to my research group</u>.</p>
<p>If you are interested in joining the StatDivLab, that's wonderful! We have many projects available for motivated and curious students. </p>
<p>Please apply to the <a href="https://www.biostat.washington.edu/apply">PhD program in Biostatistics</a> at the University of Washington, or to the <a href="https://stat.uw.edu/academics/graduate/programs">PhD program in Statistics</a> at the University of Washington to join the lab. When you are invited for an interview or visit, please let me know and we can set up a time to meet and discuss projects. </p>
</div>
</div>
</div>
<div class="element__attachment element-2 ">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="block_container " data-content-id="151548">
<div class="block__bg-img block_container__bg-img" style="display:none;"></div>
<div id="151548" class="block block_id-151548 block_type__1-column padding-bottom__none background-color__light-gray background-position__center">
<div class="block__bg-img"></div>
<div class="page_frame group">
<style>
</style>
<script defer="defer" src="javascripts/blocks/parallax.min.js%3F1495829387" type="text/javascript"></script>
<script>
</script>
<div class="all-cols-wrap ">
<div class="col-1 ">
<div class="element__attachment element-0 ">
</div>
<div class="element__image element-1 ">
</div>
<div class="element__text element-2 ">
<div class="bizango_cms bizango_cms_content bizango_content_prose textdiv_prose" id="content_151548_prose" data-bizango='{"monkey":"data", "field":"prose", "object_type":"content", "cms_id":"151548", "label":"" , "tag":"div"}' >
<h2><span style="color:#50c7e9;">for biologists</span></h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="block_container " data-content-id="151550">
<div class="block__bg-img block_container__bg-img" style="display:none;"></div>
<div id="151550" class="block block_id-151550 block_type__2-column-even padding-top__none background-color__light-gray background-position__center">
<div class="block__bg-img"></div>
<div class="page_frame group">
<style>
</style>
<script defer="defer" src="javascripts/blocks/parallax.min.js%3F1495829387" type="text/javascript"></script>
<script>
</script>
<div class="all-cols-wrap ">
<div class="col-1 col@tablet col-left@tablet">
<div class="element__image element-0 ">
</div>
<div class="element__text element-1 ">
<div class="bizango_cms bizango_cms_content bizango_content_prose textdiv_prose" id="content_151550_prose" data-bizango='{"monkey":"data", "field":"prose", "object_type":"content", "cms_id":"151550", "label":"" , "tag":"div"}' >
<p>The Statistical Diversity Lab (est. 2017), is the <a href="team.html">research group</a> of Amy Willis, Ph.D., an Associate Professor in the Department of Biostatistics at the University of Washington. We aim to bring our skills in statistics and computational biology to improve the way that microbial ecologists analyse microbiome data. We want to develop tools that enable biological discovery while maintaining the highest standards of statistical rigour and ethics. </p>
<p>The methods that are typically used to analyse microbiome data were borrowed from ecology. In classical ecology experiments, a scientist would cordon off a section of a rainforest and count the number of (for example) frogs in the section. The species of each frog could be easily identified, most species of frog were probably represented in the portion, the scientist could return the next day and find a fairly similar result, and if a new frog showed up it could be brought back to the lab to be study more closely. In contrast, a microbial ecologist cannot directly observe the microscopic organisms in an ecosystem. She has to take a tiny sample, break apart the cells (thus changing the sample), sequence that genetic information (incurring errors along the way), determine which microbes probably contributed that genetic information (possibly getting it wrong)... and that's just to construct the data for analysis! Furthermore, most microbes cannot be grown in the lab, and so validating surprising findings can be challenging, or it can be impossible.</p>
</div>
</div>
</div>
<div class="col-2 col@tablet col-right@tablet">
<div class="element__image element-0 ">
</div>
<div class="element__text element-1 ">
<div class="bizango_cms bizango_cms_content bizango_content_rich1 textdiv_rich1" id="content_151550_rich1" data-bizango='{"monkey":"data", "field":"rich1", "object_type":"content", "cms_id":"151550", "label":"" , "tag":"div"}' >
<p>Classical ecology tools (such as analysing biodiversity and community composition) didn't require complex error modelling. However, using these tools for microbiome data is fraught with problems. Instead of samples of 100 or 200 specimens, high throughput sequencing generates hundreds of thousands or millions of sequences. However, since the most commonly used models are underdispersed relative to the data, standard errors are almost always zero. The result is that ecologists see incredibly small p values, but replicating results is rare.</p>
<p>We therefore see a pressing need for new statistical methods to answer the questions asked by biologists and clinicians studying microbiomes. By understanding the data generating mechanism and building this understanding into statistical methods, we aim to make the results of microbiome experiments consistent across independent experiments. Coupled with methodological development, we see outreach and collaboration as an important part of this mission.</p>
<p>We care about producing high-quality software and making our papers reproducible. We generally post data and code on our github page, but if you cannot find the resources you need to reproduce our results, please contact us.</p>
</div>
</div>
<div class="element__attachment element-2 ">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="block_container " data-content-id="151549">
<div class="block__bg-img block_container__bg-img" style="display:none;"></div>
<div id="151549" class="block block_id-151549 block_type__1-column padding-bottom__none background-position__center">
<div class="block__bg-img"></div>
<div class="page_frame group">
<style>
</style>
<script defer="defer" src="javascripts/blocks/parallax.min.js%3F1495829387" type="text/javascript"></script>
<script>
</script>
<div class="all-cols-wrap ">
<div class="col-1 ">
<div class="element__attachment element-0 ">
</div>
<div class="element__image element-1 ">
</div>
<div class="element__text element-2 ">
<div class="bizango_cms bizango_cms_content bizango_content_prose textdiv_prose" id="content_151549_prose" data-bizango='{"monkey":"data", "field":"prose", "object_type":"content", "cms_id":"151549", "label":"" , "tag":"div"}' >
<h2><span style="color:#4b62aa;">for the public</span></h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="block_container " data-content-id="151552">
<div class="block__bg-img block_container__bg-img" style="display:none;"></div>
<div id="151552" class="block block_id-151552 block_type__2-column-even padding-top__none background-position__center">
<div class="block__bg-img"></div>
<div class="page_frame group">
<style>
</style>
<script defer="defer" src="javascripts/blocks/parallax.min.js%3F1495829387" type="text/javascript"></script>
<script>
</script>
<div class="all-cols-wrap ">
<div class="col-1 col@tablet col-left@tablet">
<div class="element__image element-0 ">
</div>
<div class="element__text element-1 ">
<div class="bizango_cms bizango_cms_content bizango_content_prose textdiv_prose" id="content_151552_prose" data-bizango='{"monkey":"data", "field":"prose", "object_type":"content", "cms_id":"151552", "label":"" , "tag":"div"}' >
<p>Science moves forward through an iterative process of positing hypotheses and using data to evaluate them. Evaluating the evidence for a hypothesis is often extremely complex, and specialised or custom methods are needed. The Statistical Diversity Lab develops specialised methods for the analysis of data collected for studying biodiversity.</p>
<p>In the 21st century, many scientists studying biodiversity are not directly observing the creatures they study. Often, we will be looking for their molecular signatures - inferring their presence and features, rather than directly observing them. These inferences about life contain both random and systematic error. As a result, much of our work focuses on mathematically describing the probability of these errors. These descriptions are called <em>statistical models</em>. We propose, construct and evaluate statistical models for biodiversity data, and apply them to data - ultimately allowing us to evaluate scientific hypotheses. A particular focus of our lab is the unseen world of bacteria. Communities of bacteria are <em>everywhere</em>, and bacteria play key roles in the human digestive and immune systems, as well as in food production and global climate cycles. Modern microbiological data is extremely complex, and that's why we find statistical models for this data so interesting and challenging to work with.</p>
</div>
</div>
</div>
<div class="col-2 col@tablet col-right@tablet">
<div class="element__image element-0 ">
</div>
<div class="element__text element-1 ">
<div class="bizango_cms bizango_cms_content bizango_content_rich1 textdiv_rich1" id="content_151552_rich1" data-bizango='{"monkey":"data", "field":"rich1", "object_type":"content", "cms_id":"151552", "label":"" , "tag":"div"}' >
<p>We have incredible collaborators, including in human health (with the <a href="https://www.minot.bio/">Minot Lab</a>), toxicology (with the <a href="https://deohs.washington.edu/faculty/julia-yue-cui">Cui Lab</a>), soil science (with the <a href="https://whitmanlab.soils.wisc.edu/">Whitman Lab</a>), computational biology (with the <a href="http://merenlab.org/">Meren Lab</a>), animal migration (with the <a href="https://clementbataille.wixsite.com/earthscience">SAiVE Lab</a>), marine science (with the <a href="http://kellyresearchlab.com/">Kelly Lab</a>), human-animal-microbe interactions (with the <a href="https://deohs.washington.edu/cohr/">One Health Center</a>), as well as with other statisticians (such as the <a href="https://www.danielawitten.com/">Witten Lab</a>).</p>
<p>We are grateful for the support of the National Institutes of Health though grant R35GM1334120, which funds much of our methods development.</p>
<p>If you have questions about our work, I would love to hear from you. Please reach out to me via <a href="team/amy-willis.html">email</a>.</p>
</div>
</div>
<div class="element__attachment element-2 ">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="topfoot" class="userBG" style="background-image:url('https://s3.amazonaws.com/hoth.bizango/images/362955/footerbg_feature.jpg')">
<img src="images/sites/sdi/lucyintheskywith.png" class="dia">
<div class="page_frame group">
<a href="index.html" class="footlog"><img src="images/sites/sdi/logo.png"></a>
<div class="fl">
<div class="links">
<a id="" rel="publications" href="publications.html">publications</a>
<a id="" rel="team" href="team.html">team</a>
<a id="" rel="software" href="software.html">software</a>
<a id="" rel="teaching" href="teaching.html">teaching</a>
<a id="" rel="blog" href="https://statdivlab.github.io/blog/">blog</a>
<a id="" rel="overview" href="overview.html">research overview</a>
<div class="rule"></div>
</div>
<div class="utes">
<a href="https://twitter.com/AmyDWillis" target="_BLANK" class="twitt"><span class="icon-twitter"></span></a>
<a href="https://github.com/adw96" target="_BLANK" class="git"><span class="icon-github"></span></a>
<img src="images/sites/sdi/footeremail.png" class="this">
<a href="tel:206.543.8027"><span class="icon-phone"></span>206.543.8027</a>
<span class="loc"><span class="icon-location fl"></span>
<div class="bizango_cms bizango_cms_content bizango_content_prose textdiv_prose" id="content_151418_prose" data-bizango='{"monkey":"data", "field":"prose", "object_type":"content", "cms_id":"151418", "label":"" , "tag":"div"}' >
<p>Department of Biostatistics<br />
F-657, Box 357232<br />
Health Sciences Building, 1959 NE Pacific St<br />
University of Washington, Seattle, WA 98195</p>
</div>
</span>
</div>
</div>
</div>
<div id="footer">
<div class="page_frame tAc">
© 2023 statistical diversity lab
</div>
</div>
</div>
<div id="bottom_foot">
<div class="page_frame tAc">
<a id="bizango" href="https://www.bizango.com" title="Website Design" target=_NEW>Website Design</a>
</div>
</div>
<script type="text/javascript">
$(document).ready(function() {
$("#mobile_nav .nav").hide();
$("#mobile_nav").click(function() {
$("#mobile_nav .nav").toggle();
});
$("#nav_overview").addClass("current")
});
</script>
</body>
</html>