getTibble | R Documentation |
Get tibble
getAbundanceTibble(
x,
column_id = "FeatureID",
select_rows = NULL,
select_cols = NULL
)
getTaxaTibble(
x,
column_id = "FeatureID",
select_rows = NULL,
select_cols = NULL
)
getSampleTibble(
x,
column_id = "SampleID",
select_rows = NULL,
select_cols = NULL
)
x |
|
column_id |
A character |
select_rows |
Rows to return in output. |
select_cols |
Columns to return in output |
Convert different phyloseq
slots into tibbles.
getAbundanceTibble
gets the otu_table in tibble format.
getTaxaTibble
gets the taxa_table in tibble format.
getSampleTibble
gets the sample_data in tibble format.
A tibble
Sudarshan A. Shetty
Shetty SA (2020). Utilities for microbiome analytics. https://github.com/RIVM-IIV-Microbiome/biomeUtils
library(biomeUtils)
data("FuentesIliGutData")
otu_tib <- getAbundanceTibble(FuentesIliGutData)
tax_tib <- getTaxaTibble(FuentesIliGutData)
meta_tib <- getSampleTibble(FuentesIliGutData)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.