forked from microbiome/OMA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
55 lines (46 loc) · 1.9 KB
/
index.Rmd
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
---
title: "Microbiome Analysis"
documentclass: book
site: bookdown::bookdown_site
bibliography: [book.bib, packages.bib]
biblio-style: apalike
link-citations: yes
github-repo: microbiome/MiaBook
---
```{r, echo=FALSE}
.gh_url <- file.path('https://github.com', rmarkdown::metadata[['github-repo']])
```
---
date: "`r rebook::openingDetails(Copyright='', Source=.gh_url)`"
url: "`r .gh_url`"
---
# Preface {-}
This website is a book on microbiome analysis in the Bioconductor universe and
is showing common principles and workflows of performing microbiome analysis.
The book was borne out of necessity, while updating tools for microbiome
analysis to work with common classes of the Bioconductor project handling
count data of various sorts. It is heavily influenced by similar resources, such
as the [Orchestrating Single-Cell Analysis with Bioconductor](https://www.nature.com/articles/s41592-019-0654-x)
book, [phyloseq tutorials](http://joey711.github.io/phyloseq/tutorials-index)
and [microbiome tutorials](https://microbiome.github.io/tutorials/).
We focus on microbiome analysis tools, new, updated and established methods.
In the *Introduction* section, we show how to work with the key data
infrastructure `TreeSummarizedExperiment` and related classes, how this
framework relates to other infrastructure and how to load microbiome analysis
data to work with in the context of this framework.
The second section, *Focus Topics*, is all about the steps for analyzing
microbiome data, beginning with the most common steps and progressing to
more specialized methods in subsequent sections.
The third section, *Appendix*, contains the rest of things we didn't find
another place for, yet.
```{r include=FALSE}
# global knitr options
knitr::opts_chunk$set(
fig.width=10,
dpi=300
)
# automatically create a bib database for R packages
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown'
), 'packages.bib')
```