Skip to content

Commit

Permalink
multiqc 1.21, bcftools 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
subwaystation committed Mar 13, 2024
1 parent 6ffe7f9 commit 28da9a6
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 Down Expand Up @@ -97,7 +96,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 Expand Up @@ -178,6 +177,11 @@ RUN wget https://github.com/arq5x/bedtools2/releases/download/v2.31.0/bedtools.s
&& mv bedtools.static /usr/local/bin/bedtools \
&& chmod +x /usr/local/bin/bedtools

# 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 \
&& bcftools-1.19/ && ./configure --prefix=/usr/local/bin/ && make && make install && export PATH=/usr/local/bin/bin:$PATH

# copy required scripts
COPY scripts/* /usr/local/bin/
COPY scripts /usr/local/bin/scripts/
Expand Down

0 comments on commit 28da9a6

Please sign in to comment.