Skip to content

Commit

Permalink
update bcf_tools version from v1.9 to v1.20.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZaahidShaik committed Aug 7, 2024
1 parent 73b4b2f commit aed358c
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,20 +69,15 @@ RUN R -e "install.packages('tidyverse',dependencies=TRUE, repos='http://cran.rst


# Install bcftools
RUN wget https://github.com/samtools/bcftools/releases/download/1.9/bcftools-1.9.tar.bz2
RUN mv bcftools-1.9.tar.bz2 /opt/bcftools-1.9.tar.bz2

RUN tar -xf /opt/bcftools-1.9.tar.bz2 -C /opt/ && \
rm /opt/bcftools-1.9.tar.bz2 && \
cd /opt/bcftools-1.9 && \
RUN wget https://github.com/samtools/bcftools/releases/download/1.20/bcftools-1.20.tar.bz2
RUN mv bcftools-1.20.tar.bz2 /opt/bcftools-1.20.tar.bz2
RUN tar -xf /opt/bcftools-1.20.tar.bz2 -C /opt/ && \
rm /opt/bcftools-1.20.tar.bz2 && \
cd /opt/bcftools-1.20 && \
./configure && \
make && \
make install && \
rm -rf /opt/bcftools-1.9

# Copy the pipeline into Docker image
COPY run /run/
RUN chmod +x /run/proc.sh
rm -rf /opt/bcftools-1.20

# Install bedtools
RUN wget https://github.com/arq5x/bedtools2/releases/download/v2.30.0/bedtools.static.binary
Expand Down

0 comments on commit aed358c

Please sign in to comment.