Skip to content

Commit 9cf9278

Browse files
committed
up
1 parent 4a23282 commit 9cf9278

1 file changed

Lines changed: 12 additions & 10 deletions

File tree

vignettes/gbcc2025.Rmd

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ knitr::opts_chunk$set(
2626
Authors:
2727
Tuomas Borman^[University of Turku, tvborm@utu.fi]
2828
<br/>
29-
Last modified: 1 June, 2025.
29+
Last modified: 4 June, 2025.
3030

3131
<img src="figures/gbcc_logo_transparent.png" width="150"/> <img src="figures/mia_logo.png" width="150"/>
3232

@@ -87,7 +87,7 @@ which provides essential methods for conducting microbiome analysis.
8787
#### Questions
8888

8989
- What is _mia_ and _OMA_?
90-
- How microbiome data science is conducted in _SummarizezExperiment_ ecosystem.?
90+
- How microbiome data science is conducted in _SummarizezExperiment_ ecosystem?
9191
- What benefits this new ecosystem have compared to previous approaches?
9292

9393
#### Objectives
@@ -102,7 +102,7 @@ which provides essential methods for conducting microbiome analysis.
102102

103103
### Background
104104

105-
#### Microbiome data science
105+
#### Microbiome data science [@MorenoIndias2021]
106106

107107
<img src="figures/moreno-indias2021.png" width="500"/>
108108

@@ -111,7 +111,6 @@ which provides essential methods for conducting microbiome analysis.
111111
```{r}
112112
#| label: microbiome_bioconductor
113113
#| fig-width: 15
114-
#| include: false
115114
library(ggplot2)
116115
library(ggrepel)
117116
@@ -187,15 +186,15 @@ ggplot(timeline_data, aes(x = year, y = 0)) +
187186
)
188187
```
189188

190-
### SummarizedExperinent, SE (Huber et al., 2015)
189+
#### SummarizedExperinent, SE [@Huber2015]
191190

192191
<img src="figures/SE.png" width="80%"/>
193192

194-
### TreeSummarizedExperiment, TreeSE (Huang et al., 2021)
193+
#### TreeSummarizedExperiment, TreeSE [@Huang2021]
195194

196195
<img src="figures/TreeSE.png" width="100%"/>
197196

198-
### Ochestrating Microbiome Analysis with Bioconductor (OMA)
197+
#### Ochestrating Microbiome Analysis with Bioconductor (OMA)
199198

200199
::: columns
201200
::: {.column width="70%"}
@@ -241,7 +240,8 @@ ggplot(timeline_data, aes(x = year, y = 0)) +
241240

242241
The curated metagenomic data project provides free access to a collection of
243242
curated microbiome datasets, which are available through the
244-
_curatedMetagenomicData_ R package. Currently, it contains over 20,000 samples
243+
_curatedMetagenomicData_ R package [@Pasolli2017]. Currently, it contains over
244+
20,000 samples
245245
from 100 studies, which can be imported directly to `TreeSE` format. You can
246246
see the full list of available datasets from
247247
[the documentation](https://waldronlab.io/curatedMetagenomicData/index.html).
@@ -307,7 +307,8 @@ Slots can be accessed with dedicated accessor functions. For instance,
307307

308308
```{r}
309309
#| label: show_coldata
310-
colData(tse) |> head()
310+
# Show only first five rows and columns
311+
colData(tse)[1:5, 1:5]
311312
```
312313

313314
#### Data processing
@@ -367,7 +368,8 @@ We can access the transformed data with the following command:
367368

368369
```{r}
369370
#| label: access_clr
370-
assay(tse, "clr") |> head()
371+
372+
assay(tse, "clr")[1:5, 1:5]
371373
```
372374

373375
#### Community summaries

0 commit comments

Comments
 (0)