Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 984 Bytes

README.md

File metadata and controls

57 lines (38 loc) · 984 Bytes

sklearn-bio-workflows

Installation

Install and set up Mambaforge

Clone git repository and submodules:

git clone --recurse-submodules https://github.com/hermidalc/sklearn-bio-workflows.git
cd sklearn-bio-workflows

To install conda environment on Intel architecture hardware:

mamba env create -f envs/sklearn-bio-workflows-mkl.yml

Otherwise:

mamba env create -f envs/sklearn-bio-workflows.yml

Activate the environment:

mamba activate sklearn-bio-workflows

Install non-conda packages into environment:

./utils/install_nonconda_r_pkgs.R

Updates

Update the git repository and submodules:

git pull
git submodule update --recursive

To update the conda environment on Intel architecture hardware:

mamba env update -f envs/sklearn-bio-workflows-mkl.yml

Otherwise:

mamba env update -f envs/sklearn-bio-workflows.yml