Installation

Installing MCube from GitHub

The R package MCube is publicly available at https://github.com/YangLabHKUST/MCube/. You can install the development version of MCube from GitHub:

# install.packages("devtools")
devtools::install_github("YangLabHKUST/MCube")

Suggested packages

To conduct parallel computing, the R packages doParallel (https://CRAN.R-project.org/package=doParallel), foreach (https://CRAN.R-project.org/package=foreach), and iterators (https://cran.r-project.org/package=iterators) are required:

install.packages(c("doParallel", "foreach", "iterators"))

To handle matrices that are too large to load in memory though memory-mapping to binary files on disk, the R package bigstatsr (https://cran.r-project.org/package=bigstatsr) is required:

install.packages("bigstatsr")