-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv_2pg.qmd
92 lines (57 loc) · 2.28 KB
/
cv_2pg.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
---
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_short_show == T)
publications <- "files/harrigan.bib"
BibOptions(sorting = 'none')
refs <- rev(ReadBib(publications))
NoCite(refs)
```
<div id="cv_print_header">
<p id="cv-title">
Cait Harrigan, MSc.
</p>
[email protected] | View this CV online at <a href="https://caitharrigan.ca/cv">caitharrigan.ca/cv</a>
</div>
::: {.column-margin}
<a id=print_button href="files/cv_2pg.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()`
## Selected 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])`
## Fellowships & Awards
`r cv_entries %>% filter(type=='award') %>% print_section()`
## Talks
`r cv_entries %>% filter(type=='talk_academic') %>% print_section()`
## Research Mentorship
`r cv_entries %>% filter(type=='supervision') %>% print_section()`
<center>
Last updated: `r paste(lubridate::month(Sys.Date(), label=T), lubridate::year(Sys.Date()) )`
</center>