A short description of the project
Create a new conda environment using the requirements file from root
conda create --name ibp-2022-env --file requirements.txt
If the creation was successful, you can check if the environment was created using
conda env list
If "ibp-2022-env" is listed in your available environments, simply activate the environment and download the additional scenic+ package from github.
conda activate ibp-2022-env
pip install git+https://github.com/aertslab/scenicplus.git
If you are using Jupyter Notebooks to run the code, you will need to create a kernel from your conda environment.
python -m ipykernel install --user --name=ibp-2022-env