1 # Copyright (C) The Lightning Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 FROM python:3.11-buster
8 # Install necessary dependencies
10 RUN apt-get update --fix-missing -qy
12 RUN apt-get install -qy wget \
28 # Getting HTSLIB 1.10.2 for tabix/bgzip
30 RUN wget https://github.com/samtools/htslib/releases/download/1.10.2/htslib-1.10.2.tar.bz2 && tar -xjvf htslib-1.10.2.tar.bz2 && \
31 cd htslib-1.10.2 && ./configure && make && make install
35 # Installing samtools 1.10
37 RUN wget https://github.com/samtools/samtools/releases/download/1.10/samtools-1.10.tar.bz2 && tar -xjvf samtools-1.10.tar.bz2 && \
38 cd samtools-1.10 && ./configure && make && make install
42 # Installing bcftools 1.10.2
44 RUN wget https://github.com/samtools/bcftools/releases/download/1.10.2/bcftools-1.10.2.tar.bz2 && tar -xjvf bcftools-1.10.2.tar.bz2 && \
45 cd bcftools-1.10.2 && ./configure && make && make install
51 RUN wget http://sourceforge.net/projects/snpeff/files/snpEff_v4_3t_core.zip && \
52 unzip snpEff_v4_3t_core.zip