Cactus is a reference-free whole-genome alignment program, as well as a pangenome graph construction toolkit.
- Use the precompiled binaries (Linux X86) or Docker image from the latest release
- See below for details on building from source.
Please subscribe to the cactus-announce low-volume mailing list so we may reach out about releases and other announcements.
To ask questions or request help, please use the Cactus GitHub Discussions.
To file a bug report or enhancement request against the code or documentation, create a GitHub Issue.
- See the Progressive Cactus documenation
- Please cite the Progressive Cactus paper when using Cactus. Additional descriptions of the core algorithms can be found here and here.
- Please cite the HAL paper when using HAL tools.
- See the Minigraph-Cactus Pangenome Pipeline documenatation
- Please cite the Minigraph-Cactus paper.
Cactus uses many different algorithms and individual code contributions, principally from Joel Armstrong, Glenn Hickey, Mark Diekhans and Benedict Paten. We are particularly grateful to:
- Yung H. Tsin and Nima Norouzi for contributing their 3-edge connected components program code, which is crucial in constructing the cactus graph structure, see: Tsin,Y.H., "A simple 3-edge-connected component algorithm," Theory of Computing Systems, vol.40, No.2, 2007, pp.125-142.
- Bob Harris for providing endless support for his LastZ pairwise, blast-like genome alignment tool.
- Melissa Jane Hubiz and Adam Siepel for halPhyloP and Phast.
- B Gulhan, R Burhans, R Harris, M Kandemir, M Haeussler, A Nekrutenko for KegAlign, the GPU-accelerated version of LastZ.
- Yan Gao et al. for abPOA
- Heng Li for minigraph, minimap2, gfatools and dna-brnn
- Dany Doerr for GFAffix, used to optionally clean pangenome graphs.
- The vg team for vg, used to process pangenome graphs.
- The authors of Mash
- Andrea Guarracino, Erik Garrison and co-authors for odgi. Make sure to cite odgi when using it or its visualizations.
- Hani Z. Girgis for RED
- Erik Garrison and co-authors for vcfwave. vcflib citation
- Martin Frith and collaborators for
last-train
from last. last-train citation - Han Cao for merge_duplicates vcf cleanup script
- Gene Myers, Richard Durbin and Chenxi Zhou for FastGA
The instructions below are meant primarily for developers. Everyone else should try to use the precompiled binaries (Linux X86) or Docker image from the latest release instead.
The top-level cactus interface (cactus
, cactus-pangenome
, cactus-hal2maf
, etc) is awlays a Python package that is pip install
ed into a Python virtualenv. This package runs several other tools as subprocesses, which are compiled into binaries.
- Cloning Cactus
- Creating the Python virtualenv
- Compiling the binaries
- Building on Mac (Read first if you're on a Mac!)
Cactus contains many submodules, so it is necessary to clone with --recursive
or to run git submodule update --init --recursive
inside the cactus directory after cloning.
git clone https://github.com/ComparativeGenomicsToolkit/cactus.git --recursive
Cactus requires Python >= 3.9 along with Python development headers and libraries
Install virtualenv first if needed with python3 -m pip install virtualenv
.
Create the Python virtual environment run (from inside cactus/
):
python3 -m virtualenv cactus_env
echo "export PATH=$(pwd)/bin:\$PATH" >> cactus_env/bin/activate
echo "export PYTHONPATH=$(pwd)/lib:\$PYTHONPATH" >> cactus_env/bin/activate
echo "export LD_LIBRARY_PATH=$(pwd)/lib:$LD_LIBRARY_PATH" >> cactus_env/bin/activate
source cactus_env/bin/activate
python3 -m pip install -U setuptools pip wheel
python3 -m pip install -U .
python3 -m pip install -U -r ./toil-requirement.txt
If you have Docker installed, you can now run Cactus. All binaries, such as lastz
and cactus-consolidated
will be run via Docker using the latest release. Singularity binaries can be used in place of docker binaries with the --binariesMode singularity
flag. Note, you must use Singularity 2.3 - 2.6 or Singularity 3.1.0+. Singularity 3 versions below 3.1.0 are incompatible with cactus (see issue #55 and issue #60).
By default, cactus will use the image corresponding to the latest release when running docker binaries. This is usually okay, but can be overridden with the CACTUS_DOCKER_ORG
and CACTUS_DOCKER_TAG
environment variables. For example, to use GPU release 2.4.4, run export CACTUS_DOCKER_TAG=v2.4.4-gpu
before running cactus.
In order to compile the binaries locally and not use a Docker image, you need some dependencies installed. On Ubuntu (we've tested on 20.04 and 22.04), you can look at the Cactus Dockerfile for guidance. To obtain the apt-get
command:
grep apt-get Dockerfile | head -1 | sed -e 's/RUN //g' -e 's/apt-get/sudo apt-get/g'
Progressive Cactus can be built on ARM cpus including on Mac, but Minigraph-Cactus is currently X86-only.
To build Cactus, run (from inside cactus/
):
make -j 8
In order to run the Minigraph-Cactus pipeline, you must also run
build-tools/downloadPangenomeTools
If you want to work with MAF, including running cactus-hal2maf
, you must also run
build-tools/downloadMafTools
In order to toggle between local and Docker binaries, use the --binariesMode
command line option. If --binariesMode
is not specified, local binaries will be used if found in PATH
, otherwise a Docker image will be used.
These are the steps I used to build Cactus on a new M4 Mac Mini with MacOS Sequoia 15.5:
Install command-line developer tools. I did this by typing make
on the command line (in Terminal), and accepting the prompt in the pop-up window to install them. The version installed, as obtained from pkgutil --pkg-info=com.apple.pkg.CLTools_Executables
was
package-id: com.apple.pkg.CLTools_Executables
version: 16.4.0.0.1.1747106510
volume: /
location: /
install-time: 1751461503
I pasted the install commanid from the Homebrew homepage into the Terminal and ran it. For me this command was the following, but you're probably better off to get it from the webpage
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Then I installed the brew dependencies for Cactus
brew install coreutils libomp hdf5 libdeflate parallel wget samtools bcftools
When installing libomp
above (use brew reinstall libomp
if you missed it), it printed some messages about setting:
export LDFLAGS="-L/opt/homebrew/opt/libomp/lib"
export CPPFLAGS="-I/opt/homebrew/opt/libomp/include"
So I added some flags to this effect to ~/.zprofile. Doing so, and including CFLAGS
, is crucial for the build to work.
printf "export LDFLAGS=\"-L/opt/homebrew/opt/libomp/lib\"\n" >> ~/.zprofile
printf "export CPPFLAGS=\"-I/opt/homebrew/opt/libomp/include\"\n" >> ~/.zprofile
printf "export CFLAGS=\"-I/opt/homebrew/opt/libomp/include\"\n" >> ~/.zprofile
Make sure to reload the profile to apply the changes immediately:
source ~/.zprofile
Python3 seemed to be installed by default. In order to install virtualenv I ran
python3 -m pip install virtualenv
You should now be able to run the steps to clone, setup the virtualenv and compile the binaries exactly as they are described above.
Note that Minigraph-Cactus is not (yet) supported on Mac.
I recommend running
make evolver_test_local
in order to test your installation (you will need to have run build-tools/downloadMafTools
when setting up the binaries for this to work)