--- title: "The microbial package for microbial community analysis" author: - Kai Guo, University of Michigan - Pan Gao, University of North Dakota date: "`r Sys.Date()`" output: html_document: df_print: paged word_document: toc: yes toc_depth: '6' rmarkdown::html_vignette: default pdf_document: toc: yes toc_depth: 6 vignette: | \usepackage[utf8]{inputenc} %\VignetteIndexEntry{microbial} %\VignetteEngine{knitr::knitr} --- _microbial_ is a R package for microbial community analysis with dada2 (https://benjjneb.github.io/dada2/) and phyloseq (https://joey711.github.io/phyloseq/). _microbial_ package is developed to enhance the available statistical analysis procedures in R by providing simple functions to analysis and visualize the 16S rRNA data.Here we present a tutorial with minimum working examples to demonstrate usage and dependencies. ## 1. Data format/ requirement To use the package user can start with the raw fastq files with sample information ready or user can start with a phyloseq object (phloseq-class) comprising taxa abundance information, taxonomy assignment, sample data which is a combination of the measured environmental variables and any categorical variables present in the sample. If the phylogenetic tree is available, it can also be part of it, but it has nothing to do with most of the functions implemented here so far. We chose to use this format because as the analysis and visualization proceed, we have many options to process the data.User can go to the https://github.com/joey711/phyloseq to check the detail format of phyloseq object. ## 2 Example data The physeq data were the Global patterns of 16S rRNA diversity at a depth of millions of sequences per sample (2011). The data was published in PNAS in early 2011. This work compared the microbial communities from 25 environmental samples and three known “mock communities” – a total of 9 sample types – at a depth averaging 3.1 million reads per sample. Authors were able to reproduce diversity patterns seen in many other published studies, while also invesitigating technical issues/bias by applying the same techniques to simulated microbial communities of known composition. We simple modified the data with add one more group factor to display some functions implemented in the package. ## 3. Software Usage ### 3.1 Installation Install the package with its dependencies and load it for usage in R. ``` {r install, eval = FALSE} library(devtools) # Load the devtools package install_github("guokai8/microbial") # Install the package ``` ### 3.2 Start from fastq files To start with the raw _fastq_ files, the users need first have the reference database ready. The _preRef_ function provides easy way to download the references. The _ref_db_ parameter is a character to choose which database to download: _silva_, _rdp_ and Greengenes. The _path_ parameter show the location to store the database. ```{r download, eval=FALSE} preRef(ref_db = "silva", path=".") ``` Then users can use the _plotquality_ function to show the quality of the reads which will help the users to specify _processSeq_ to perform the analysis with _dada2_ package. The parameters included in this function were same as the _dada2_ function. The _path_ is the working path for the input reads. The _truncLen_ is an optional parameter with the default 0 (no truncation): Truncate reads after truncLen bases. Reads shorter than this are discarded. The _trimLeft_ and _trimRight_ are the number of nucleotides to remove from the start and end of each read. ```{r processSeq, eval=FALSE} ?processSeq ``` ### 3.3 Data normalisation Microbial community data is mainly OTU abundance (counts) with different design data.It is usually necessary that data is transformed by a suitable normalisation method. We provided different methods including; “relative”, “TMM”,variance stabilisation "vst" and "log2" for normalisation of taxa abundance. The function takes a phyloseq object physeq and returns a similar object whose otu-table component is normalised by a selected method as shown in the following examples. ``` {r quick, message=FALSE} library(microbial) data("Physeq") #default normalize method is relative phy <- normalize(physeq, method = "relative") ``` ### 3.4 Relative abundance among all samples or groups We first use relative normalised bacteria abundance to obtain the proportion of per sample. Then we generate the figure to show the proportion among all samples based on "Phylum" level. The _group_ parameter is provided to show the proportion based on group level. ```{r plotbar, message=FALSE} plotbar(phy,level="Phylum") #or among two group # plotbar(phy,level="Phylum", group="group") ``` ### 3.5 Alpha diversity with wilcoxon test or t-test The _richness_ calculate the alpha diversity of provided community data using selected indices/method(s). Alpha diversity refers to the diversity within a particular area or ecosystem, and is usually expressed by the number of species. The _plotalpha_ function performs pair-wise wilcoxon test or t-test of diversity measures between groups and outputs a plot for each of the selected methods(indices) annotated with significance labels. The _method_ in the _richness_ function include: "Observed", "Chao1", "ACE", "Richness", "Fisher", "Simpson", "Shannon", "Evenness" and "InvSimpson". The _group_ paramater in the _plotalpha_ function is a categorical variable for which the grouping should be based on during the analysi, the _group_ should be one of the _sample_data_ column. _pvalue_ specifies the p-value threshold for significance in wilcoxon, default is set to 0.05. User can also choose to use the _padj_ paramter instead of _pvalue_. The _plotalpha_ function return a _ggplot2_ object which will easy to modified by user. ```{r alpha, message = FALSE} plotalpha(physeq, group = "group") ``` ### 3.6 Beta diversity Beta diversity is a comparison of of diversity between groups, usually measured as the amount of species change between the groups. In the example provided below, we first normalize the taxa abundance to relative abundance to obtain the proportion of most abundant taxa per sample. The arguments in the _plotbeta_ function include: _physeq_ which a required phyloseq object, the _distance_ which is a dissimilarity distance measure with otions of “bray” (default), "unifrac","wunifrac","manhattan", "euclidean", "canberra", "bray", "kulczynski", "jaccard" and other distance methods, the _group_ is a character string specifying a variable whose levels are the groups in the data, the _method_ paramater is a character string specifying ordination method. All methods available to the ordinate function of phyloseq are acceptable here as well. The _plotbeta_ function will return _ggplot2_ object. ```{r plotbeta, message = FALSE} plotbeta(phy, group="SampleType") ``` We also provide _betatest_ function by doing permutation analysis of variance (PERMANOVA) and return corresponding r-squared and p-values, beta dispersion between all posible pairwise combinations of levels in the grouping variable is calculated and results return as a table. ```{r betatest, message = FALSE,eval=FALSE} beta <-betatest(phy,group="SampleType") ``` ### 3.7 Differentail expression Here we provide _difftest_ function to find features that are up or down regulated in the compared groups using DESeq2 package. The _plotdiff_ function produce figure of the top most features annotated with corresponding adjusted p-values and abundance distribution. The _difftest_ require a _phyloseq_ object containing merged information of abundance, taxonomic assignment, sample data including the measured variables and categorical information of the samples. Raw count values are preferred for this function. The _group_ paramater is a character string specifying the name of a categorical variable containing grouping information. The _pvalue_ and _log2FC_ are thresholds for p values and log2 fold change. Adjusted p value cutoff is also supported by specify the _padj_ paramater. ```{r difftest, message = FALSE,eval=FALSE} res <- difftest(physeq,group="group") ``` The _plotdiff_ function require the differential test results from diff_test. And the _level_ parameter provide which level to show: "Genus", "Species" or other level. Other paramaters can be found in the man page of _plotdiff_. ```{r plotdiff, message = FALSE,eval=FALSE} plotdiff(res,level="Genus",padj=0.001,log2FC = 7,fontsize.y = 3) ``` ### 3.8 Biomarker selection In addition we implement classification using random forest classifier and LEfSe method to find most import features among the groups. Random forests or random decision forests are an ensemble learning method for classification. And the random forest classifier is used to determine the importance of differentially expressed bacteria/taxa to the microbial community. Typically, we will use the Mean Descrease in Accuracy to measure the importance for each bacteria/taxa. The _biomarker_ function do the random forest classification and return the sigificant table include the importance values. Raw count values are preferred for this function, and user can specify the normalize method with the _method_ parameter. ```{r biomarker,message=FALSE,eval=FALSE} res <- biomarker(physeq,group="group",ntree = 100) ``` The _plotmarker_ function will generate the figures based on the _biomarker_ result. User can specify level to show with the _level_ parameter and also the _top_ parameter will choose the number of top most importance bacteria and taxa to draw. ```{r plotmarker,message = FALSE,eval=FALSE} plotmarker(res,level="Genus") ``` We also provide _ldamarker_ function to do the LEfSe analysis which base on the kruskal-wallis test and the LDA analysis. The parameters include _physeq_ (A phyloseq object) and _group_ (a character string specifying the name of a categorical variable containing grouping information. ). Raw count values are preferred for this function, and user can also specify the normalize method with the _method_ parameter. ```{r lda, message=FALSE,eval=FALSE} res <- ldamarker(physeq,group="group") ``` The _plotLDA_ function take the results from _ldamarker_ and _group_ factor which was used for the LEfSe analysis to generate figure with the significant bacteria marker. ```{r plotlda, message = FALSE,eval=FALSE} plotLDA(res,group=c("A","B"),lda=5,pvalue=0.05) ``` ## 4. Dependencies This packages depends on a number of other packages which include: phyloseq, vegan, DESeq2, ggplot2,randomForest. The package is still under development. New functions will be provided soon. ## 5. Contact information For any questions please contact guokai8@gmail.com or submit the issues to https://github.com/guokai8/microbial/issues