-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.qmd
129 lines (94 loc) · 2.42 KB
/
index.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
---
pagetitle: "Population Genomics In Practice H25"
toc: false
date: last-modified
sidebar: false
format:
nbis-course-html:
number-sections: false
template-partials:
- assets/www/title-block.html
execute:
freeze: false
cache: false
---
```{r }
#| label: load-course-date-info
#| echo: false
#| eval: true
library(lubridate)
library(dplyr)
library(kableExtra)
library(formattable)
library(yaml)
current <- yaml::read_yaml("_course_info.yml")$current
session <- yaml::read_yaml("_course_info.yml")[[as.character(current)]]
if (grepl("TBA$", current)) {
current <- "(To be announced)"
}
```
### NBIS • Workshop
### DDLS Population genomics in practice
Welcome to the DDLS Population Genomics in Practice homepage!
#### Important dates and information
See the canvas home page for the current course
[`r current`](`r session$canvas_home_page`) for more
information on how to apply.
::: {.callout-important}
The application deadline has been extended to the end of October.
:::
```{r }
#| label: print-course-dates
#| echo: false
#| eval: true
#| results: asis
df <- data.frame(
title = c("Next round", "Application opens", "Application deadline"),
data = c(
paste0(
format(as_datetime(session$start_time), "%d-%b-%Y"),
" - ",
format(as_datetime(session$end_time), "%d-%b-%Y")
),
format(as_datetime(session$application_opens), "%d-%b-%Y"),
format(as_datetime(session$application_closes), "%d-%b-%Y")
)
)
cat(
print(kable(df,
format = "pipe", escape = FALSE,
row.names = FALSE, col.names = NULL,
align = c("l", "c")
)),
"\n\n: {.hover .condensed .responsive}\n\n"
)
```
#### Brief contents
:::: {.columns}
::: {.column width="50%"}
This workshop includes the following moments:
- Variant calling and filtering
- Describing and summarising variation data
- Population structure
- Demographic analysis
- Selection scans
- Coalescent simulation
See [syllabus](syllabus.qmd) for a more complete description of course
contents and [info](info.qmd) for practical information on venue and
hotels.
:::
::: {.column width="50%"}
![](img/ooa-demesdraw-fig-1.svg){height="600px"}
:::
::::
#### Course archive
- [DDLS Population Genomics In Practice 2023](https://nbisweden.github.io/workshop-pgip/)
<br>
![](assets/logos/nbis-scilifelab.svg){height="1.2em"}
<br>
---
::: {.landing-update}
::: {.smallest}
Last updated on {{< fa calendar-alt >}} {{< meta date >}}
:::
:::