Installation

We provide binaries for the latest version of PanGenie under Releases. Alternatively, PanGenie can be installed with conda:

conda install bioconda::pangenie

However, if you prefer to build PanGenie yourself, follow the instructions below.

Building from source using Conda

git clone https://github.com/eblerjana/pangenie.git
cd pangenie
conda env create -f environment.yml
conda activate pangenie
mkdir build; cd build; cmake .. ; make

Building from source

This requires Jellyfish and cereal to be installed.

git clone https://github.com/eblerjana/pangenie.git
cd pangenie
mkdir build; cd build; cmake .. ; make