README.md

corebiota

R-CMD-check Codecov test coverage License: GPL v3 Codacy Badge

Probabilistic core microbiota analysis

The goal of corebiota is to provide a set of functions to easily and robustly perform core microbiota analysis from an ASV/OTU table. It also put emphasis on robustness by providing a probabilistic framework and reproducibility.

The API is as follow:

Miscellaneous functions, nonetheless important, are:

Yes, all the function can take as input a phyloseq object.

This package have only phyloseq as an external dependcy for your joy. We therefore, extensively use R Base and only pheatmap, covr and usethis as suggests.

Installation

You can install the development version of corebiota like so:

# Install devtools package (if not already done!)
install.package("remotes")

# Load devtools package
library(remotes)

# Install corebiota package
install_github("Ebedthan/corebiota")

Example

This is a basic example which shows you how to solve a common problem:

library(corebiota)

# Some fake data
asv_tbl <- data.frame(sample1 = 1:10, sample2 = 10:1, sample3 = 80:89)
rownames(asv_tbl) <- paste0("ASV", "_", 1:10)

sad(asv_tbl)

Enjoy!

Some great papers on designing a core microbiota analysis



Ebedthan/coremicrobiota documentation built on May 2, 2023, 3:25 p.m.