-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathtests-of-selection.html
executable file
·137 lines (108 loc) · 3.95 KB
/
tests-of-selection.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Tests of selection</title>
<meta name="author" content="Trevor Bedford">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="../reveal/css/reveal.min.css">
<link rel="stylesheet" href="../reveal/css/theme/trvrb.css" id="theme">
<link rel="stylesheet" href="../reveal/css/font-awesome/css/font-awesome.min.css">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="../reveal/lib/css/zenburn.css">
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div style="position: absolute; top:10px; left:10px; z-index:100;">
<a href="/sismid/selection/">
<i class="fa fa-times-circle" style="color: #bbb; opacity: 0.1;"></i>
</a>
</div>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section data-background="#C4B945">
<h2 class="title">Tests of selection</h2>
</section>
<section>
<h2>1. Tests of diversity</h2>
<h2>2. Tests of tree shape</h2>
<h2>3. Tests of evolutionary rates</h2>
</section>
<section>
<h2>Test: is there less genetic diversity than expected?</h2>
</section>
<section>
<h3>Influenza phylogeny and effective number of infections</h3>
<img class="stretch" src="images/flu_coalescence.png">
</section>
<section>
<h3>Coalescent rates in flu and measles</h3>
<img class="stretch" src="images/flu_vs_measles_coalescence.png">
<div class="citation">
<a href="http://bedford.io/papers/bedford-tree-topology/">
Bedford et al. 2011
</a>
</div>
</section>
<section>
<h3>Selective sweeps purge diversity</h3>
<img class="stretch" src="images/ncov_tree.png">
<div class="citation">
<a href="https://nextstrain.org/ncov/gisaid/global/all-time">
nextstrain.org
</a>
</div>
</section>
<section>
<h2>Test: is the tree shape different from the neutral expectation?</h2>
</section>
<section>
<h3>Tajima's <i>D</i> statistic summarizes deviation from neutrality</h3>
<img class="stretch" src="images/tajima.png">
</section>
<section>
<h3>Influenza has negative Tajima's <i>D</i></h3>
<img class="stretch" src="images/flu_tajima.png">
</section>
<section>
<h2>Test: is there an overabundance of fixed non-synonymous mutations?</h2>
</section>
<section>
<h3>"Trunk" branches show an excess of non-synonymous change at epitope sites in influenza</h3>
<img class="stretch" src="images/flu_mutation_table.png">
<div class="citation">
<a href="https://biologydirect.biomedcentral.com/articles/10.1186/1745-6150-1-34">
Wolf et al. 2006
</a>
</div>
</section>
<section>
<h3>Abundance of green epitope mutations on phylogeny trunk, relative to blue synonymous and red non-epitope mutations</h3>
<img class="stretch" src="images/flu_mutation_tree.png">
<div class="citation">
<a href="http://www.genetics.org/content/192/2/671">
Strelkowa and Lässig 2012
</a>
</div>
</section>
<section>
<h3>Can be extended to look at relationship between mutations and clade growth</h3>
<img class="stretch" src="images/sarscov2_adaptive_evolution_mut_accumulation_s1.png">
<div class="citation">
<a href="https://bedford.io/papers/kistler-sarscov2-adaptive-evolution/">
Kistler and Bedford 2022
</a>
</div>
</section>
</div>
</div>
<script src="../reveal/lib/js/head.min.js"></script>
<script src="../reveal/js/reveal.min.js"></script>
<script src="../reveal/js/config.js"></script>
</body>
</html>