forked from microbiome/OMA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
98 lines (77 loc) · 3.46 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
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
---
title: "Orchestrating Microbiome Analysis"
documentclass: book
site: bookdown::bookdown_site
bibliography: [book.bib]
biblio-style: apalike
link-citations: yes
github-repo: microbiome/OMA
always_allow_html: yes
---
```{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`"
---
# Welcome {-}
<a href="https://bioconductor.org"><img src="`r rebook::BiocSticker('animated')`" width="200" alt="Bioconductor Sticker" align="right" style="margin: 0 1em 0 1em" /></a>
You are reading the online book, [**Orchestrating Microbiome Analysis
with R and Bioconductor**](microbiome.github.io/OMA) [@OMA], where we
walk through common strategies and workflows in microbiome data
science.
The book shows through concrete examples how you can take advantage of
the latest developments in R/Bioconductor for the manipulation,
analysis, and reproducible reporting of hierarchical and heterogeneous
microbiome profiling data sets. The book was borne out of necessity,
while updating microbiome analysis tools to work with Bioconductor
classes that provide support for multi-modal data collections. Many of
these techniques are generic and widely applicable in other contexts
as well.
This work has been heavily influenced by other similar resources, in
particular the Orchestrating Single-Cell Analysis with Bioconductor
[@Amezquita2020natmeth], [phyloseq
tutorials](http://joey711.github.io/phyloseq/tutorials-index)
[@Callahan2016] and [microbiome
tutorials](https://microbiome.github.io/tutorials/) [@Shetty2019].
This book extends these resources to teach the grammar of Bioconductor
workflows in the context of microbiome data science. As such, it
supports the adoption of general skills in the analysis of large,
hierarchical, and multi-modal data collections. We focus on microbiome
analysis tools, including entirely new, partially updated as well as
previously established methods.
This online resource and its associated ecosystem of microbiome data
science tools are a result of a community-driven development process,
and welcoming new contributors. Several individuals have
[contributed](https://github.com/microbiome/OMA/graphs/contributors)
methods, workflows and improvements as acknowledged in the
Introduction. You can find more information on how to find us online
and join the developer community through the project homepage at
[microbiome.github.io](https://microbiome.github.io). This online
resource has been written in RMarkdown with the bookdown R
package. The material is **free to use** with the [Creative Commons
Attribution-NonCommercial
3.0](https://creativecommons.org/licenses/by-nc/3.0/us/) License.
--------------
```{r include=FALSE}
library(Cairo)
# global knitr options
knitr::opts_chunk$set(
fig.width=10,
dpi=300,
dev = "png",
dev.args = list(type = "cairo-png")
)
```
```{js, echo = FALSE}
// This block adds image to the front page
title=document.getElementById('header');
title.innerHTML = title.innerHTML +
'<img src="https://user-images.githubusercontent.com/60338854/128359392\
-6feef8df-30e9-4ea0-ae3b-4bb619d746ed.png" alt="Microbiome" width="50%"/>' +
'<p style="font-size:12px">Figure source: Moreno-Indias <i>et al</i>. (2021) \
<a href="https://doi.org/10.3389/fmicb.2021.635781">Statistical and \
Machine Learning Techniques in Human Microbiome Studies: Contemporary \
Challenges and Solutions</a>. Frontiers in Microbiology 12:11.</p>'
```