HiCBricks is a R/Bioconductor package for handling high-resolution Hi-C datasets through HDF (Hierarchical Data Format) files. Read more about HDF here
To install the most stable development version from Bioconductor, run this from a R console. Note: R version >= 3.5
is required. This command will first installs BiocManager
from CRAN. BiocManager
is a convenient utility to install Bioconductor
packages. Then, we install HiCBricks
through BiocManager
.
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("HiCBricks", version = "3.11")
To install the stable release version from Bioconductor, run this from a R console.
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("HiCBricks", version = "3.11")
To install the most cutting-edge stable version of HiCBricks, do this from a R console to download it directly from GitHub.
if (!requireNamespace("devtools", quietly = TRUE))
install.packages("devtools")
devtools::install_git("https://github.com/koustav-pal/HiCBricks")
To start working with HiCBricks, please checkout the vignette (tutorial) here, at the main Bioconductor website. It contains an in-depth walkthrough of almost all functions in HiCBricks and will guide users through the process of
There are many new developments which are planned for future releases of HiCBricks. Broadly speaking,
read and export functions
for as many new Hi-C data formats as possible. On top priority is HiCExplorer and .hic.If you would like to help out, let me know via email at koustav.pal@ifom.eu.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.