-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (102 loc) · 4.77 KB
/
index.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
---
layout: default
pagination:
enabled: true
---
<div class="home">
<div class="site-header-container {% if site.cover %}has-cover{% endif %}" {% if site.cover %}style="background-image: url({{ site.cover | prepend: site.baseurl }});"{% endif %}>
<div class="scrim {% if site.cover %}has-cover{% endif %}">
<header class="site-header">
<h1 class="title">{{ site.title }}</h1>
{% if site.subtitle %}<p class="subtitle">{{ site.subtitle }}</p>{% endif %}
</header>
</div>
</div>
<style>
img {
float:left;
}
</style>
<style>
.space-before {
margin-top: 20px; /* Adjust the value as needed */
}
</style>
<!--<div class="wrapper">
<ul class="post-list">
{% for post in paginator.posts %}
<li>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
<section class="post-excerpt" itemprop="description">
<p>{{ post.content | strip_html | truncatewords: 50 }}</p>
</section>
<section class="post-meta">
<div class="post-date">{{ post.date | date: "%B %-d, %Y" }}</div>
<div class="post-categories">
{% if post.categories.size > 0 %}in {% for cat in post.categories %}
{% if site.jekyll-archives %}
<a href="{{ site.baseurl }}/category/{{ cat }}">{{ cat | capitalize }}</a>{% if forloop.last == false %}, {% endif %}
{% else %}
<a href="{{ site.baseurl }}/posts/#{{ cat }}">{{ cat | capitalize }}</a>{% if forloop.last == false %}, {% endif %}
{% endif %}
{% endfor %}{% endif %}
</div>
</section>
</li>
{% if forloop.last == false %}
<hr>
{% endif %}
{% endfor %}
</ul>-->
<div class="wrapper">
<body>
<!--<h1> <center> Welcome! </center> </h1>-->
<p> I am a 3rd year PhD student at the University of Toronto, in the Department of Ecology & Evolutionary Biology. I am co-supervised by Nicole Mideo and Matt Osmond. </p>
<p> <img src="/assets/mete_to.jpg" alt="Mete Pic" style="width:200px;margin-right:20px;"> </p> In my work, I combine mathematical modeling, comparative genomics, simulation-based inference, and other tools to answer questions in evolutionary genetics, ecology, and epidemiology. My interests include zoonotic spillover emergence, i.e., the process by which animal pathogens jump species boundaries to infect and transmit between humans; causes and consequences of variation in recombination; viral genome evolution; and inference from genomic data. My current work combines several of these interests. For example, in one of my PhD chapters, I develop theory to predict in what host taxa (e.g., short- vs long- lived species) recombination between pathogen genotypes is most extensive, and test predictions of the theory using HPAI sequence data. In another, I develop a null model for the evolution of the recombination landscape (i.e., the probability distribution of crossovers along a focal chromosome) and use this theory to make inferences about processes which have given rise to present-day flowering plant recombination landscapes. Outside of science, I enjoy podcasts, spending time outdoors, cooking, and exploring the many neighborhoods of Toronto!
<br>
<p class="space-before"> If you want to learn more about me or what I am up to, shoot me an <a href="[email protected]">email</a> or check out <a href="/assets/CV.pdf" target="_blank">my CV!</a> </p>
</body>
</div>
<!--<nav class="pagination" role="navigation">
<p>
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a class="newer-posts" href="{{ site.baseurl }}{{ paginator.previous_page_path }}">
<span class="fa-stack fa-lg">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-angle-double-left fa-stack-1x fa-inverse"></i>
</span>
</a>
{% else %}
<a class="newer-posts" href="{{ site.baseurl }}{{ paginator.next_page_path }}">
<span class="fa-stack fa-lg">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-angle-double-left fa-stack-1x fa-inverse"></i>
</span>
</a>
{% endif %}
{% else %}
<span class="fa-stack fa-lg">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-angle-double-left fa-stack-1x fa-inverse"></i>
</span>
{% endif %}
<span class="page-number">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a class="newer-posts" href="{{ site.baseurl }}{{ paginator.next_page_path }}">
<span class="fa-stack fa-lg">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-angle-double-right fa-stack-1x fa-inverse"></i>
</span>
</a>
{% else %}
<span class="fa-stack fa-lg">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-angle-double-right fa-stack-1x fa-inverse"></i>
</span>
{% endif %}
</p>
</nav>-->
</div>