chimera_removal_vs | R Documentation |
Use the VSEARCH software.
chimera_removal_vs(object, type = "Discard_only_chim", clean_pq = FALSE, ...)
object |
(required) A phyloseq-class object or one of dada, derep,
data.frame or list coercible to sequences table using the
function |
type |
(default "Discard_only_chim"). The type define the type of filtering.
|
clean_pq |
(logical; default FALSE) If TRUE, return the phyloseq object
after cleaning using the default parameter of |
... |
Other arguments passed on to |
This function is mainly a wrapper of the work of others. Please make vsearch.
I/ a sequences tables if object is of class dada, derep, data.frame or list.
II/ a phyloseq object without (or with if type = 'Select_only_chim') chimeric taxa
Adrien Taudière
chimera_detection_vs()
, dada2::removeBimeraDenovo()
data_fungi_nochim <- chimera_removal_vs(data_fungi)
data_fungi_nochim_16 <- chimera_removal_vs(data_fungi,
abskew = 16,
min_seq_length = 10
)
data_fungi_nochim2 <-
chimera_removal_vs(data_fungi, type = "Select_only_non_chim")
data_fungi_chimera <-
chimera_removal_vs(data_fungi, type = "Select_only_chim")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.