Description Usage Arguments Value Examples
This function accepts a matrix of observed transitions, groups together all observed
transitions regardless of quality scores, and estimates the error rate for that transition
as the observed fraction of those transitions. This can be used in place of the default
loessErrfun
when calling learnErrors
or link{dada}
with the effect that quality scores will be effectively ignored.
1 | noqualErrfun(trans, pseudocount = 1)
|
trans |
(Required). A matrix of the observed transition counts. Must be 16 rows, with the rows named "A2A", "A2C", ... |
pseudocount |
(Optional). Default 1. Added to each type of transition. |
A numeric matrix with 16 rows and the same number of columns as trans. The estimated error rates for each transition (row, eg. "A2C") are identical across all columns (which correspond to quality scores).
1 2 | fl1 <- system.file("extdata", "sam1F.fastq.gz", package="dada2")
err.noqual <- learnErrors(fl1, errorEstimationFunction=noqualErrfun)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.