R/remove_taxa.R

Defines functions remove_taxa

Documented in remove_taxa

#' @title Exclude Taxa
#' @description Filter out selected taxa from a phyloseq object.
#' @param taxa Names of taxa to be removed.
#' @param x \code{\link{phyloseq-class}} object
#' @return Filtered phyloseq object.
#' @references
#' To cite the microbiome R package, see citation('microbiome') 
#' @author Contact: Leo Lahti \email{microbiome-admin@@googlegroups.com}
#' @keywords utilities
#' @export
#' @seealso phyloseq::prune_taxa, phyloseq::subset_taxa
#' @details This complements the phyloseq function prune_taxa by providing
#' a way to exclude given groups from a phyloseq object.
#' @examples
#' data(dietswap)
#' pseq <- remove_taxa(c("Akkermansia", "Dialister"), dietswap)
remove_taxa <- function(taxa = NULL, x) {

    if (is.null(taxa)) {return(x)}
    i <- taxa %in% taxa(x)

    if (!all(i)) {
        warning(paste("Of the given OTU removal list, ",
        round(100*mean(i)), "% (n=", sum(i), ") match the data. 
        Removing these.", sep = ""))
    }    

    keep <- setdiff(taxa(x), taxa)

    prune_taxa(keep, x)

}

Try the microbiome package in your browser

Any scripts or data that you put into this service are public.

microbiome documentation built on Nov. 8, 2020, 5:08 p.m.