merge_taxa_vec | R Documentation |
Firstly release in the speedyseq R package by Michael R. McLaren.
Merge taxa in x
into a smaller set of taxa defined by the vector group
.
Taxa whose value in group
is NA will be dropped. New taxa will be named
according to the most abundant taxon in each group (phyloseq
and
otu_table
objects) or the first taxon in each group (all other phyloseq
component objects).
If x
is a phyloseq object with a phylogenetic tree, then the new taxa will
be ordered as they are in the tree. Otherwise, the taxa order can be
controlled by the reorder
argument, which behaves like the reorder
argument in base::rowsum()
. reorder = FALSE
will keep taxa in
the original order determined by when the member of each group first appears
in taxa_names(x)
; reorder = TRUE
will order new taxa according to their
corresponding value in group
.
The tax_adjust
argument controls the handling of taxonomic disagreements
within groups. Setting tax_adjust == 0
causes no adjustment; the taxonomy
of the new group is set to the archetype taxon (see below). Otherwise,
disagreements within a group at a given rank cause the values at lower ranks
to be set to NA
. If tax_adjust == 1
(the default), then a rank where all
taxa in the group are already NA is not counted as a disagreement, and lower
ranks may be kept if the taxa agree. This corresponds to the original
phyloseq behavior. If tax_adjust == 2
, then these NAs are treated as a
disagreement; all ranks are set to NA after the first disagreement or NA.
merge_taxa_vec(x, group, reorder = FALSE, tax_adjust = 1L)
## S4 method for signature 'phyloseq'
merge_taxa_vec(x, group, reorder = FALSE, tax_adjust = 1L)
## S4 method for signature 'otu_table'
merge_taxa_vec(x, group, reorder = FALSE)
## S4 method for signature 'taxonomyTable'
merge_taxa_vec(x, group, reorder = FALSE, tax_adjust = 1L)
## S4 method for signature 'phylo'
merge_taxa_vec(x, group)
## S4 method for signature 'XStringSet'
merge_taxa_vec(x, group, reorder = FALSE)
x |
A phyloseq object or component object |
group |
A vector with one element for each taxon in |
reorder |
Logical specifying whether to reorder the taxa by their
|
tax_adjust |
0: no adjustment; 1: phyloseq-compatible adjustment; 2: conservative adjustment |
A new phyloseq-class, otu_table, tax_table, XStringset or sam_data object depending on the class of the x param
Michael R. McLaren (orcid: 0000-0003-1575-473X) modified by Adrien Taudiere
Function in MiscMetabar that use this function: postcluster_pq()
base::rowsum()
phyloseq::merge_taxa()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.