File: allPackage.R

package info (click to toggle)
r-bioc-dada2 1.34.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,016 kB
  • sloc: cpp: 3,096; makefile: 5
file content (31 lines) | stat: -rw-r--r-- 1,457 bytes parent folder | download | duplicates (3)
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
#' DADA2 package
#'
#' The dada2 package is centered around the DADA2 algorithm for accurate high-resolution
#' of sample composition from amplicon sequencing data. The DADA2 algorithm is both more
#' sensitive and more specific than commonly used OTU methods, and resolves amplicon
#' sequence variants (ASVs) that differ by as little as one nucleotide.
#' 
#' The dada2 package also provides a full set of tools for taking raw amplicon sequencing
#' data all the way through to a feature table representing sample composition. Provided
#' facilities include:
#' 
#' \itemize{
#'  \item Quality filtering (\code{\link{filterAndTrim}}, \code{\link{fastqFilter}}, \code{\link{fastqPairedFilter}})
#'  \item Dereplication (\code{\link{derepFastq}})
#'  \item Learn error rates (\code{\link{learnErrors}})
#'  \item Sample Inference (\code{\link{dada}})
#'  \item Chimera Removal (\code{\link{removeBimeraDenovo}}, \code{\link{isBimeraDenovo}}, \code{\link{isBimeraDenovoTable}})
#'  \item Merging of Paired Reads (\code{\link{mergePairs}})
#'  \item Taxonomic Classification (\code{\link{assignTaxonomy}}, \code{\link{assignSpecies}})
#' }
#' 
#' @name dada2-package
#' 
#' @author Benjamin Callahan \email{benjamin.j.callahan@@gmail.com}
#' @author Paul J McMurdie II \email{mcmurdie@@stanford.edu}
#' @author Michael Rosen \email{eigenrosen@@gmail.com}
#' @author Susan Holmes \email{susan@@stat.stanford.edu}
#' 
#' @docType package
#' @keywords package
NA