name | depth_10_m | depth_20_m |
---|---|---|
ASV_1 | 28 | 14 |
ASV_2 | 5 | 12 |
ASV_3 | 0 | 3 |
ASV_4 | 14 | 41 |
ASV_5 | 18 | 28 |
Seminar at MBIM, Nov 30, 2023
Describe why combining natural language and code enables reproducible analysis and research.
Discover how symbols and text convey formatting and the structure of a document.
Sequence barcode marker of each sample
Group similar sequences
defining
amplicon sequence variants (ASVs)
ASV ≅ species
ASV counts table
name | depth_10_m | depth_20_m |
---|---|---|
ASV_1 | 28 | 14 |
ASV_2 | 5 | 12 |
ASV_3 | 0 | 3 |
ASV_4 | 14 | 41 |
ASV_5 | 18 | 28 |
How would ensure the correct reporting of your analysis?
02:00
analysis.qmd
---
title: "Species richness analysis"
format: typst
---
# Identifying species in microbial communities
To describe the species found in a microbial community, we isolate the DNA of a sample and then amplify and sequence a suitable barcoding marker, typically the 16S rRNA gene. We then group all similar sequences into so-called **amplicon sequence variants (ASV)**. For our purposes here, we assume that *each ASV corresponds to a bacterial species*. By counting the number of each ASV in each sample, we get an ASV counts table (@tbl-asv-counts).
```{r}
#| label: tbl-asv-counts
#| echo: false
#| tbl-cap: "ASV counts of samples collected at different depths of a lake."
suppressMessages(library(dplyr))
asv_counts <- read.csv("asv-counts.csv")
asv_counts
```
05:00
Markdown syntax |
---|
# Heading 1 |
## Heading 2 |
**strong** |
*emphasized* |
Artwork from “Hello, Quarto” keynote by Julia Lowndes and Mine Çetinkaya-Rundel, presented at RStudio Conference 2022. Illustrated by Allison Horst.
index.qmd
---
title: "MICB 2XX: Data science teaching demo"
subtitle: "Dr. Stephan Koenig"
execute:
freeze: false
---
```{r}
#| label: setup
#| echo: false
library(conflicted)
library(dplyr)
library(fontawesome)
library(fs)
CAST (2018). Universal Design for Learning Guidelines version 2.2
CAST (2018). Universal Design for Learning Guidelines version 2.2
CAST (2018). Universal Design for Learning Guidelines version 2.2
Universal design for learning fellows program—2024 cohort.