Skip to content

Commit

Permalink
Add prerequisite R packages
Browse files Browse the repository at this point in the history
  • Loading branch information
erictleung committed Mar 3, 2018
1 parent fa07859 commit 3e33f45
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,23 @@ runGitHub("shinydiversity", "erictleung")

**R Packages**

- `shiny` R package (http://shiny.rstudio.com/)
- `phyloseq` R package (http://joey711.github.io/phyloseq/)
- `shiny` (http://shiny.rstudio.com/)
- `phyloseq` (http://joey711.github.io/phyloseq/)
- `ggplot2` (ggplot2.tidyverse.org)
- `knitr` (https://yihui.name/knitr/)
- `markdown` (https://cran.r-project.org/package=markdown)
- `rmarkdown` (https://rmarkdown.rstudio.com/)
- `plyr` (http://had.co.nz/plyr/)

```R
# Install prerequisite R packages
pkgs <- c("shiny", "ggplot2", "knitr", "markdown" , "rmarkdown", "plyr")
install.packages(pkgs)

# Try http:// if https:// URLs are not supported
source("https://bioconductor.org/biocLite.R")
biocLite('phyloseq')
```

## Problem

Expand Down

0 comments on commit 3e33f45

Please sign in to comment.