-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVB_intro_to_traits.qmd
More file actions
313 lines (212 loc) · 6.61 KB
/
Copy pathVB_intro_to_traits.qmd
File metadata and controls
313 lines (212 loc) · 6.61 KB
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
---
subtitle: "VectorByte Methods Training"
title: "Introduction to Traits"
author: "The VectorByte Team (Cat Lippi, PhD, Virginia Tech)"
title-slide-attributes:
data-background-image: graphics/VectorByte-logo_lg.png
data-background-size: contain
data-background-opacity: "0.2"
format: revealjs
---
```{r setup, include = FALSE}
knitr::opts_chunk$set(cache = FALSE,
echo = FALSE,
message = FALSE,
warning = FALSE,
#fig.height=6,
#fig.width = 1.777777*6,
tidy = FALSE,
comment = NA,
highlight = TRUE,
prompt = FALSE,
crop = TRUE,
comment = "#>",
collapse = TRUE)
library(knitr)
library(kableExtra)
library(xtable)
library(viridis)
options(stringsAsFactors=FALSE)
knit_hooks$set(no.main = function(before, options, envir) {
if (before) par(mar = c(4.1, 4.1, 1.1, 1.1)) # smaller margin on top
})
knitr::opts_chunk$set(echo = FALSE)
knitr::opts_knit$set(width = 60)
source("my_knitter.R")
#library(tidyverse)
#library(reshape2)
#theme_set(theme_light(base_size = 16))
make_latex_decorator <- function(output, otherwise) {
function() {
if (knitr:::is_latex_output()) output else otherwise
}
}
insert_pause <- make_latex_decorator(". . .", "\n")
insert_slide_break <- make_latex_decorator("----", "\n")
insert_inc_bullet <- make_latex_decorator("> *", "*")
insert_html_math <- make_latex_decorator("", "$$")
## classoption: aspectratio=169
```
## Introduction to Traits - Objectives
<br>
• Define a “trait”
• Understand the role of traits (and their variation) in VBDs
• Discuss how traits can be incorporated into VBD predictions
## What is a vector?
Any agent which carries and transmits an infectious agent between hosts
<center>

</center>
## What kinds of animals are vectors?
Many! Although arthropods are most commonly studied
<center>

</center>
## Overview of VBD Transmission
Mechanical Transmission
::: columns
::: {.column width="50%"}
{width="99%"}
:::
::: {.column width="50%"}
{width="99%"}
:::
:::
## Overview of VBD Transmission
Biological Transmission
::: columns
::: {.column width="50%"}
{width="99%"}
:::
::: {.column width="50%"}
{width="99%"}
:::
:::
-----------------------------------------------------------------------
<center>

</center>
-----------------------------------------------------------------------
Pathogens undergo obligate develoment in the mosquito
<center>

</center>
## VBD Transmission is the Intersection of Two Cycles
Intrinsic and Extrinsic Incubation Periods
<center>
{width="85%"}
</center>
-----------------------------------------------------------------------
<center>

</center>
What elements do we need to include?
## What is a Trait?
***Any measurable feature of an individual organism***
<br>
*Functional traits*
$\Rightarrow$ feeding rate, size, metabolic rate, eggs per day
<br>
*Behavioral traits*
$\Rightarrow$ questing, host/food preference, thermal regulation, site selection
## Variability in Traits
<br>
<center>

</center>
## SIR Model
<center>

</center>
-----------------------------------------------------------------------
We can get more complex/realistic models...
<center>

</center>
H=host, V=vector, $_S$=susceptible, $_I$=infected, $_R$=recovered
-----------------------------------------------------------------------
But with every parameter added, more data are needed!
<center>

</center>
H=host, V=vector, $_S$=susceptible, $_I$=infected, $_R$=recovered
a=biting rate, b=vector to host transmission success (proportion of bites), d=recovery
-----------------------------------------------------------------------
<center>

</center>
H=host, V=vector, $_S$=susceptible, $_I$=infected, $_R$=recovered
a=biting rate, b=vector to host transmission success (proportion of bites), d=recovery,
c=host to vector transmission success (proportion of bites), P=extrinsic incubation period,
$\mu$=adult vector mortality rate
## $R_0$: Directly-Transmitted Pathogen
<center>

</center>
## $R_0$: Vector-Borne Pathogen
<center>

</center>
## Thermal Performance Curves (TPCs)
::: columns
::: {.column width="40%"}
<br>
- Vectors of interest are typically ectothermic
- Biological reactions typically go faster as temperature increases
:::
::: {.column width="60%"}
<center>

</center>
:::
:::
## But there's a limit!
<center>
{width="80%"}
</center>
-----------------------------------------------------------------------
::: columns
::: {.column width="50%"}
- Nearly every aspect of life history is influenced by temperature
- We want to include parameters in relation to temperature
- Biologically meaningful models
- Old assumptions were linear
- Unimodal curves are more realistic
:::
::: {.column width="50%"}
<center>
{width="75%"}
{width="75%"}
</center>
:::
:::
------------------------------------------------------------------------
Different traits have different curves
<center>

</center>
------------------------------------------------------------------------
Thermal limits are useful for predictions and mapping
<center>
{width="70%"}
</center>
Mapping current and future thermal limits to suitability for malaria transmission by the invasive mosquito *Anopheles stephensi*. Ryan *et al*. 2023. Malaria Journal.
## Estimating TPCs
TPCs are derived using empirical data from laboratory experiments.
<center>
{width="70%"}
</center>
## Need to Collect Data Across a Thermal Gradient
<br>
- Ideally want to capture data across a wide thermal gradient
- Need enough temperatures to estimate minimum, maximum, and optimum values
## Fitting TPCs
TPCs can have many possible shapes:
<center>
{width="75%"}
</center>
## Model Validation
Data from the field or other experiments can help validate estimates.
<center>
{width="65%"}
</center>