-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.qmd
170 lines (107 loc) · 4.16 KB
/
cv.qmd
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
---
title: "Cait Harrigan, MSc."
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
options(knitr.kable.NA = '')
```
```{r entries-setup, ehcho=F, warning=F, message=F}
source('format_entries.R')
source('format_bib.R')
cv_entries <- cv_entries %>% subset(cv_long_show == T)
publications <- "files/harrigan.bib"
BibOptions(sorting = 'none')
refs <- rev(ReadBib(publications))
NoCite(refs)
```
<div id=cv_print_header>
<center>
<p style="font-size: 15pt; font-weight:300; margin-bottom: 0.5em">
Cait Harrigan, MSc.
</p>
<p style="font-weight:400; margin-bottom: 0.5em">
[email protected] \| View this CV online at [caitharrigan.ca/cv](https://caitharrigan.ca/cv)
</p>
</center>
</div>
::: {.column-margin}
<a id=print_button href="files/cv.pdf" class="btn btn-outline-primary"><i class="fa-solid fa-download fa-xs"></i> Download as PDF</a>
:::
I am a graduate student at the University of Toronto supervised by [Quaid Morris](https://www.morrislab.ca/) and [Kieran Campbell](https://www.camlab.ca/). I'm a graduate researcher at the [Vector Institute](https://vectorinstitute.ai/) and Doctoral Fellow at the [UofT Data Sciences Institute](https://datasciences.utoronto.ca/). I use machine learning to understand cancer genomics by modelling the evolutionary constraints that underlie how mutations occur in DNA. I'm passionate about open science, and promoting great mentorship in the sciences.
## Education
`r cv_entries %>% filter(type=='education') %>% print_section()`
## Research experience
`r cv_entries %>% filter(type=='work') %>% print_section()`
## Peer Reviewed Publications
\* Indicates equal contribution
```{r}
ref_titles <- c()
for (r in refs) {
t <- r$title %>%
gsub(pattern = "[^[:alnum:]]", replacement = "") %>%
tolower()
ref_titles <- c(ref_titles, t)
}
sel_titles <- cv_entries %>%
filter(type=='publication_reviewed') %>%
pull(line1) %>%
gsub(pattern = "[^[:alnum:]]", replacement = "") %>%
tolower()
sel <- ref_titles %in% sel_titles
```
`r print_publications(refs[sel])`
## Other Publications
`r print_publications(refs[!sel])`
## Posters
`r cv_entries %>% filter(type=='poster') %>% print_section()`
## Fellowships & Awards
`r cv_entries %>% filter(type=='grant' | type=='award') %>% print_section()`
## Academic Talks
`r cv_entries %>% filter(type=='talk_academic') %>% print_section()`
## Guest Lectures
`r cv_entries %>% filter(type=='guest_lecture') %>% print_section()`
## Other Talks
`r cv_entries %>% filter(type=='talk_other') %>% print_section()`
## Service
```{r, echo=F, warning=F, message=F}
# collate all service together
pr <- cv_entries %>%
filter(type == 'service_review') %>%
pull(line2) %>%
paste0(collapse = ', ')
pc <- cv_entries %>%
filter(type == 'service_pc') %>%
group_by(line2) %>%
summarise(line3 = paste0(year(begin), collapse=', ')) %>%
mutate(line3 = paste0(line2, ' (', line3, ')')) %>%
pull(line3) %>%
paste0(collapse = ', ')
pr <- c(
'<div class= short-entry>',
"<b>Peer review:</b> ",
pr,
'</div>'
)
pc <- c(
'<div class= short-entry>',
"<b>Conference program committee:</b> ",
pc,
'</div>'
)
```
`r HTML(pr)`
`r HTML(pc)`
## Research Mentorship
`r cv_entries %>% filter(type=='supervision') %>% print_section()`
## Progam Administration
`r cv_entries %>% filter(type=='program_admin') %>% print_section()`
## Teaching Assistant Positions
<em style="font-size:0.8em">Unless otherwise noted, school is University of Toronto</em>
`r cv_entries %>% filter(type=='teaching') %>% print_section()`
## Mentorship
As part of my ongoing commitment to supporting students at all levels and background in engaging with computational biology, I make an effort to be available to provide guidance and resources to students, with a particular focus on creating an inclusive environment that fosters diverse perspectives and experiences. In addition to being a mentor through the organized programs listed here, I set aside ~2h/month for by-request 30 minute meetings.
`r cv_entries %>% filter(type=='mentorship') %>% print_section()`
---
<center>
Last updated: `r paste(lubridate::month(Sys.Date(), label=T), lubridate::year(Sys.Date()) )`
</center>