-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
Jim Shaw edited this page Oct 13, 2024
·
1 revision
There are three options for installation.
mamba install -c bioconda devider
#conda install -c bioconda devider
- rust version >= 1.70.0 and associated tools such as cargo are required and assumed to be in PATH.
-
cmake version > 3.12 is required. It's sufficient to download the binary from the link and do
PATH="/path/to/cmake-3.xx.x-linux-x86_64/bin/:$PATH"
before installation. - make
Optional:
- minimap2
- lofreq
- tabix (bcftools)
If you're using an x86-64 architecture with SSE instructions (most linux systems):
git clone https://github.com/bluenote-1577/devider
cd devider
cargo install --path .
devider -h # binary is available in PATH
If you're using an ARM architecture with NEON instructions (e.g. Mac M1):
# If using ARM architecture with NEON instructions
cargo install --path . --root ~/.cargo --features=neon --no-default-features
devider -h # binary is available in PATH
The static binary is only for x86-64 linux with SSE instructions currently.
wget https://github.com/bluenote-1577/devider/releases/download/latest/devider
chmod +x devider
./devider -h