-
Notifications
You must be signed in to change notification settings - Fork 0
/
research.html
108 lines (98 loc) · 3.74 KB
/
research.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
---
layout: normal
title: research
---
<section id="research" class="usa-section research">
<div class="usa-grid">
<div class="usa-width-one-whole usa-content">
<h1 class="bxheader">Research</h1>
<div class="usa-grid-full">
<div class="usa-width-two-thirds usa-content">
<p class="bottom-space">
Our work sits at the intersection of disease ecology, mathematical epidemiology, network science and data science, with applications in public health, veterinary medicine and wildlife conservation.
The lab's current focus is on addressing these knowledge gaps:
<ul>
<li> How do we measure the structure of behavioral interactions that underlie disease transmission?</li>
<li>What role do social behavior and social structure play on disease risk and dynamics?</li>
<li>How do we leverage knowledge of socio-demographic and behavioral processes for the design of infectious disease surveillance and control policy?</li>
</ul>
Below, are some of our recent research threads:
</p>
</div>
<div class="usa-width-one-third award-details">
<p class="collaborate"> <b>Collaborators</b> </p>
<ul>
{% for collaborator in site.data.collaborators %}
<li class="supporter">{{ collaborator.name }}</li>
{% endfor %}
</ul>
<p class="support"> <b>Support</b> </p>
<ul>
{% for supporter in site.data.supporters %}
<li class="supporter">{{ supporter.name }}</li>
{% endfor %}
</ul>
</div>
</div>
<div class="usa-width-two-thirds">
{% for topic in site.data.research %}
<h3 class="topic-header">{{topic.topic}}</h3>
<ul class="usa-accordion-bordered research-accordion">
{% for question in topic.questions %}
<li>
<button
class="usa-accordion-button shashank-weight"
aria-expanded="false" aria-controls="{{topic.tag}}-{{forloop.index}}">
{{question.question}}
</button>
<div id="{{topic.tag}}-{{forloop.index}}" class="usa-accordion-content">
{% for paper in question.publications %}
<span class="publication-name">
{% if paper.full_text_article %}
<a href="https://bansallab.com/publications/{{ paper.full_text_article }}">{{ paper.title }}</a>
{% elsif paper.link %}
<a href="{{paper.link}}">{{ paper.title }}</a>
{% else %}
{{ paper.title }}
{% endif %}
<br />
<span class="publication-author">
{% for author in paper.authors %}
{% if forloop.last %}
{% if author.lab %}<span class="publication-author-lab">{% endif %}
{{ author.name }}
{% if author.lab %}</span>{% endif %}
{% else %}
{% if author.lab %}<span class="publication-author-lab">{% else %}{% endif %}
{{ author.name }},
{% if author.lab %}</span>{% endif %}
{% endif %}
{% endfor %} <br>
{% if paper.journal %}
<span class="publications-journal">{{paper.journal}}</span>,
<span class="publications-citation"><a href=" {{paper.link}} ">{{paper.citation}}</a></span>
{% endif %}
</span>
<br/>
</span>
{% endfor %}
</div>
</li>
{% endfor %}
</ul>
{% endfor %}
</div>
<div class="usa-width-one-third">
<!--
<img
src="https://bansallab.com/img/research/elizabeth-pratha-working.jpg"
alt="Elizabeth and Pratha in the lab">
<img
src="https://bansallab.com/img/research/tortoise-oral-swab.jpg"
alt="Desert tortoise oral swab">
-->
</div>
</div>
</div>
</div>
</section>