forked from microbiome/OMA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06_packages.Rmd
58 lines (38 loc) · 1.62 KB
/
06_packages.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
# Packages {#packages}
```{r setup, echo=FALSE, results="asis"}
library(rebook)
chapterPreamble()
```
<img src="general/figures/mia_logo.png" width="100" alt="mia logo" align="right" style="margin: 0 1em 0 1em" />
## Package installation
Several R packages provide methods for the analysis and manipulation
of `SummarizedExperiment` and related data containers. One of these is
`mia`. The installation for this and other packages has the following
procedure.
Stable Bioconductor release version can be installed with:
```{r eval=FALSE, message=FALSE}
BiocManager::install("microbiome/mia")
```
Biocondcuctor development version requires the installation of the
latest R beta version, and this is primarily recommended for those who
already have solid experience with R/Bioconductor and need access to
the latest experimental updates.
```{r eval=FALSE, message=FALSE}
BiocManager::install("microbiome/mia", version="devel")
```
The bleeding edge (and potentially unstable) development version lives
in Github:
```{r eval=FALSE, message=FALSE}
devtools::install_github("microbiome/mia")
```
## Some available packages
Some of the R packages supporting the framework include:
- [mia](microbiome.github.io/mia) : Microbiome analysis tools
- [miaViz](microbiome.github.io/miaViz) : Microbiome analysis specific visualization
- [miaSim](microbiome.github.io/miaSim) : Microbiome data simulations
- [miaTime](microbiome.github.io/miaTime) : Microbiome time series analysis
- [philr](http://bioconductor.org/packages/devel/bioc/html/philr.html) (external)
## Session Info {-}
```{r sessionInfo, echo=FALSE, results='asis'}
prettySessionInfo()
```