knitr::opts_chunk$set(fig.path="man/figures/readme/")
NetCoMi (Network Construction and Comparison for Microbiome Data) is an R package designed to facilitate the construction, analysis, and comparison of networks tailored to microbial compositional data. It implements a comprehensive workflow introduced in Peschel et al. (2020), which guides users through each step of network generation and analysis with a strong emphasis on reproducibility and computational efficiency.
With NetCoMi, users can construct microbial association or dissimilarity networks directly from sequencing data, typically provided as a read count matrix. The package includes a broad selection of methods for handling zeros, normalizing data, computing associations between microbial taxa, and sparsifying the resulting matrices. By offering these components in a modular format, NetCoMi allows users to tailor the workflow to their specific research needs, creating highly customizable microbial networks.
The package supports both the construction, analysis, and visualization of a single network and the comparison of two networks through graphical and quantitative approaches, including statistical testing. Additionally, NetCoMi offers the capability of constructing differential networks, where only differentially associated taxa are connected.
Exemplary network comparison using soil microbiome data ('soilrep' data from phyloseq package). Microbial associations are compared between the two experimantal settings 'warming' and 'non-warming' using the same layout in both groups.
Here is an overview of methods available for network construction, together with some information on their implementation in R:
Association measures:
cor()
from stats
package)cor()
from stats
package)bicor()
from WGCNA
packagesparcc()
from SpiecEasi
package)ccrepe
package)SpiecEasi
package)SPRING
package)propr
package)Dissimilarity measures:
vegdist()
from vegan
package)vegdist()
from vegan
package)KLD()
from LaplacesDemon
package)KLD()
from LaplacesDemon
package)KLD()
from LaplacesDemon
package)vegdist()
and clr()
from SpiecEasi
package)Methods for zero replacement:
multRepl
from zCompositions
package)lrEM
from zCompositions
package)cmultRepl
from zCompositions
package)Normalization methods:
cumNormMat
from metagenomeSeq
package)rrarefy
from vegan
package)varianceStabilizingTransformation
from DESeq2
package)clr()
from
SpiecEasi
package))TSS, CSS, COM, VST, and the clr transformation are described in [@badri2020shrinkage].
# Required packages install.packages("devtools") install.packages("BiocManager") # Since two of NetCoMi's dependencies are only available on GitHub, # it is recommended to install them first: devtools::install_github("zdk123/SpiecEasi") devtools::install_github("GraceYoon/SPRING") # Install NetCoMi devtools::install_github("stefpeschel/NetCoMi", repos = c("https://cloud.r-project.org/", BiocManager::repositories()))
If there are any errors during installation, please install the missing dependencies manually.
Packages that are optionally required in certain settings are not installed together with NetCoMi. These can be installed automatically using:
installNetCoMiPacks()
If not installed via installNetCoMiPacks()
, the required package is installed
by the respective NetCoMi function when needed.
Thanks to daydream-boost, NetCoMi can also be installed from conda bioconda channel with
# You can install an individual environment firstly with # conda create -n NetCoMi # conda activate NetCoMi conda install -c bioconda -c conda-forge r-netcomi
Everyone who wants to use new features not included in any releases is invited to install NetCoMi's development version:
devtools::install_github("stefpeschel/NetCoMi", ref = "develop", repos = c("https://cloud.r-project.org/", BiocManager::repositories()))
Please check the NEWS document for features implemented on develop branch.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.