1 # Copyright (C) The Lightning Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
6 MAINTAINER Jiayong Li <jli@curii.com>
9 # Install necessary dependencies
11 RUN apt-get update --fix-missing -qy
13 RUN apt-get install -qy wget \
29 # Getting HTSLIB 1.10.2 for tabix/bgzip
31 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 && \
32 cd htslib-1.10.2 && ./configure && make && make install
36 # Installing samtools 1.10
38 RUN wget https://github.com/samtools/samtools/releases/download/1.10/samtools-1.10.tar.bz2 && tar -xjvf samtools-1.10.tar.bz2 && \
39 cd samtools-1.10 && ./configure && make && make install
43 # Installing bcftools 1.10.2
45 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 && \
46 cd bcftools-1.10.2 && ./configure && make && make install
52 RUN wget http://sourceforge.net/projects/snpeff/files/snpEff_v4_3t_core.zip && \
53 unzip snpEff_v4_3t_core.zip