Mbtools
R package for microbiome analysis. Provides helper functions for common workflows ranging from preprocessing to visualization.
Install / Use
/learn @Gibbons-Lab/MbtoolsREADME
mbtools is a collection of helpers that we use to analyze microbiome
data. It makes it easier to run some common analyses and is pretty
opinionated towards our own experiences.
General philosophy
mbtools sees analyses as a workflow consisting of several analysis steps
and final outputs based on those. This is pretty similar to Qiime 2 which pioneered
that abstraction.
Data types
mbtools mostly works on the following data types:
- artifacts - compound data objects returned from an analysis step
- phyloseq object - a phyloseq object containing sequence variant abundances, taxonomy assignments and sample metadata
- data tables - general data frame-like objects in tidy format
Workflow steps
For mbtools a workflow step is based on input data and a configuration,
thus having the function signature step(object, config).
Most steps can be chained with the pipe operator to yield workflows.
For instance, the following is a possible workflow with mbtools:
library(mbtools)
config <- list(
demultiplex = config_demultiplex(barcodes = c("ACGTA", "AGCTT")),
preprocess = config_preprocess(truncLen = 200),
denoise = config_denoise()
)
output <- find_read_files("raw") %>%
demultiplex(config$demultiplex) %>%
quality_control() %>%
preprocess(config$preprocess) %>%
denoise(config$denoise)
This clearly logs the used workflow and the configuration. The configuration can also be saved and read in many formats, for instance yaml.
config.yaml:
preprocess:
threads: yes
out_dir: preprocessed
trimLeft: 10.0
truncLen: 200.0
maxEE: 2.0
denoise:
threads: yes
nbases: 2.5e+08
pool: no
bootstrap_confidence: 0.5
taxa_db: https://zenodo.org/record/1172783/files/silva_nr_v132_train_set.fa.gz?download=1
species_db: https://zenodo.org/record/1172783/files/silva_species_assignment_v132.fa.gz?download=1
hash: yes
This can now be reused by someone else:
config <- read_yaml("config.yml")
output <- find_read_files("raw") %>%
quality_control() %>%
preprocess(config$preprocess) %>%
denoise(config$denoise)
Other functions
All other functions are usually functions that are meant to be inside more complex code or functions that produce plots and endpoints of an analysis. Most of them act on phyloseq objects and some on tidy data tables.
Related Skills
node-connect
341.6kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
84.6kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
341.6kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
84.6kCommit, push, and open a PR
