Description Usage Arguments Value Examples
This function extracts the uniques-vector
from several different data objects,
including dada-class
and derep-class
objects, as well as
data.frame
objects that have both $sequence and $abundance columns.
The return value is an integer vector named by sequence and valued by abundance. If the input is
already in uniques-vector
format, that same vector will be returned.
1 | getUniques(object, collapse = TRUE, silence = FALSE)
|
object |
(Required). The object from which to extract the |
collapse |
(Optional). Default TRUE.
Should duplicate sequences detected in |
silence |
(Optional). Default FALSE. Suppress reporting of the detection and merger of duplicated input sequences. |
integer
.
An integer vector named by unique sequence and valued by abundance.
1 2 3 4 5 | derep1 = derepFastq(system.file("extdata", "sam1F.fastq.gz", package="dada2"))
dada1 <- dada(derep1, err=tperr1)
getUniques(derep1)[1:3]
getUniques(dada1)[1:3]
getUniques(dada1$clustering)[1:3]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.