This site contains lessons for analyzing 16S rRNA amplicon sequencing data in R based on data collected at the University of Wisconsin - Madison through the Micro 551 Senior Capstone class. Introduction to R materials were modified from the Data Carpentry course materials (Copyright (c) Data Carpentry) on Data Analysis and Visualization in R for Ecologists. These lessons provide a brief overview of the experimental design, how amplicons are preprocessed, and how to analyze the resulting OTU (operational taxonomical unit) table of abundances for each taxa in R.
All Data Carpentry instructional material is freely available under the Creative Commons Attribution license, and therefore this material is freely available under the same license.
You will need to download the data files for the Introduction to R lesson and OTU tables for the Amplicon Analysis lesson. Downloading the raw sequencing files to perform preprocessing on your own is optional, and can be accessed through your UW Box Account.
R and RStudio are separate downloads and installations. R is the underlying statistical computing environment, but using R alone is no fun. RStudio is a graphical integrated development environment (IDE) that makes using R much easier and more interactive. You need to install R before you install RStudio.
sessionInfo()
, which will also display which version of R you are running. Go on the CRAN website and check whether a more recent version is available. If so, please download and install it. You can check here for more information on how to remove old versions from your system if you wish to do so..exe
file that was just downloadedsessionInfo()
, which will also display which version of R you are running. Go on the CRAN website and check whether a more recent version is available. If so, please download and install it..pkg
file for the latest R versionsudo apt-get install r-base
, and for Fedora sudo yum install R
), but we don’t recommend this approach as the versions provided by this are usually out of date. In any case, make sure you have at least R 3.3.1.sudo dpkg -i rstudio-x.yy.zzz-amd64.deb
at the terminal).After installing R and RStudio, you need to install the following packages.
install.packages(c("tidyverse", "remotes", "devtools"))
remotes::install_github("MadsAlbertsen/ampvis2")
if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager")
BiocManager::install("phyloseq")
If you are asked to update packages, type a
for all. If you are asked to install packages from the source compilation, type Yes
. You will know if the package installed successfully if you type library(tidyverse)
and so on for each package and you do not get error messages. Note, when the tidyverse package is loaded, it will show some messages describing the package - this is not an error.
If you cannot install the entire tidyverse
because of lots of errors, we only need these packages from the larger set:
install.packages(c("dplyr", "tidyr", "ggplot2"))
These materials were created by referencing several other resources, and this course website is by no means a completely exhaustive resource or tutorial on 16S rRNA amplicon analysis. I used DADA2 within R to preprocess the samples, and various other resources to help create these tutorials.
Elizabeth McDaniel, 2020. License.