View source: R/comparePhyloseq.R
comparePhyloseq | R Documentation |
Compare Phyloseq Objects
comparePhyloseq(x)
x |
A named list of |
Provided a named list of different phyloseq
objects
'comparePhyloseq' returns a data.frame with basic values in
each of the phyloseq
objects.
A tibble
Sudarshan A. Shetty
Shetty SA (2021). Utilities for microbiome analytics. https://github.com/RIVM-IIV-Microbiome/biomeUtils
library(biomeUtils)
data("FuentesIliGutData")
ps1 <- subset_samples(FuentesIliGutData, ILI == "C")
ps1 <- prune_taxa(taxa_sums(ps1) > 0, ps1)
ps2 <- subset_samples(FuentesIliGutData, ILI == "L1")
ps2 <- prune_taxa(taxa_sums(ps2) > 0, ps2)
ps3 <- subset_samples(FuentesIliGutData, ILI == "L2")
ps3 <- prune_taxa(taxa_sums(ps3) > 0, ps3)
ps.list <- c("C" = ps1, "L1" = ps2, "L2" = ps3)
comparePhyloseq(ps.list)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.