Skip to content

Commit

Permalink
Merge pull request #376 from pangenome/bcftools_1.19
Browse files Browse the repository at this point in the history
multiqc 1.21, bcftools 1.19
  • Loading branch information
subwaystation authored Mar 13, 2024
2 parents 6ffe7f9 + b583c97 commit d2dc381
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ RUN apt-get update \
curl \
pigz \
tabix \
bcftools \
samtools \
wget \
pip \
Expand All @@ -43,6 +42,11 @@ RUN apt-get update \
&& apt-get purge \
&& rm -rf /var/lib/apt/lists/*

# current bcftools
RUN wget https://github.com/samtools/bcftools/releases/download/1.19/bcftools-1.19.tar.bz2 \
&& tar xjf bcftools-1.19.tar.bz2 \
&& cd bcftools-1.19/ && ./configure --prefix=/usr/local/bin/ && make && make install && export PATH=/usr/local/bin/bin:$PATH && cd .. && cp /usr/local/bin/bin/* /usr/local/bin/

RUN git clone --recursive https://github.com/waveygang/wfmash \
&& cd wfmash \
&& git pull \
Expand Down Expand Up @@ -97,7 +101,7 @@ RUN git clone https://github.com/marschall-lab/GFAffix.git \
&& cd ../ \
&& rm -rf GFAffix

RUN pip install multiqc==1.18
RUN pip install multiqc==1.21

RUN wget https://github.com/vgteam/vg/releases/download/v1.40.0/vg && chmod +x vg && mv vg /usr/local/bin/vg

Expand Down

0 comments on commit d2dc381

Please sign in to comment.