1 FROM arvados/jobs:latest
5 RUN apt-get update && apt-get install -y --no-install-recommends apt-utils
6 RUN apt-get install -y apt-utils && apt-get install -y unzip
7 RUN apt-get install autoconf -y
8 RUN apt-get install wget -y
9 RUN apt-get install python-pip -y
10 RUN apt-get install python-numpy -y && apt-get install python-scipy -y
11 RUN apt-get install python-matplotlib -y && apt-get install python-pandas -y
12 RUN apt-get upgrade -y
15 # install lib files to build SAMtools
16 RUN apt-get install libncurses5-dev -y && apt-get install libbz2-dev -y && apt-get install liblzma-dev -y && apt-get install git -y && apt-get install autoconf -y
19 RUN apt-get install zlib1g-dev -y
20 RUN apt-get install zlib1g -y
24 RUN apt-get install xz-utils -y
26 # Installing liblzma-dev
27 RUN apt-get install liblzma-dev -y
30 RUN apt-get install libpthread-stubs0-dev -y
33 RUN apt-get install libcurl3-openssl-dev -y
35 # Installing libcrypto
36 RUN apt-get install libssl-dev -y
39 RUN apt-get install bc -y
41 # installing build essentials
42 RUN apt-get install build-essential -y
45 RUN apt-get install parallel -y
48 RUN apt-get install cmake -y
51 RUN cd /tmp && git clone 'https://github.com/simongog/sdsl-lite.git' && cd sdsl-lite && ./install.sh /usr/local
53 RUN apt-get remove libhts-dev
56 RUN cd /tmp && wget http://github.com/samtools/htslib/archive/1.10.2.zip && unzip 1.10.2 && cd htslib-1.10.2 && make && make install && cd /tmp && rm -rf htslib-1.10.2 && ldconfig
60 RUN wget http://github.com/samtools/bcftools/archive/1.10.2.zip && unzip 1.10.2 && cd bcftools-1.10.2 && autoheader && autoconf && ./configure && make && make install