Following the old adage that an example is worth a thousand docstrings, we created a set of notebooks that cover many typical Hi-C analyses using the open2c code ecosystem. For users who are new to Hi-C analysis, we recommend going through example notebooks in the following order:
Note that these notebooks currently focus on mammalian interphase Hi-C analysis, but are readily extendible to other organisms and cellular contexts.
Clone open2c_examples
on your computer using git clone
command, and checkout the recent version:
git clone https://github.com/open2c/open2c_examples
git checkout cooltools-0.5.0
Then navigate to the open2c_examples
directory and use environment.yml
file to create a conda environment open2c
with the software packages required to run these notebooks:
export PIP_NO_CACHE_DIR=1
cd open2c_examples
conda env create -f environment.yml
Note that the environmental variable PIP_NO_CACHE_DIR
is set, as this helped avoid numba and numpy version conflicts.
Activate the environment and launch jupyter:
conda activate open2c
jupyter lab