Skip to content

Commit

Permalink
Adding samtools to bwa Docker contaiiner
Browse files Browse the repository at this point in the history
  • Loading branch information
tefirman committed Feb 9, 2024
1 parent 1bd11ba commit 2c279ca
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile_bwa
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,9 @@ WORKDIR /bwa-0.7.17
RUN make CC='gcc -fcommon'
WORKDIR /
RUN rm -rf bwa-0.7.17 bwa-0.7.17.tar.bz2
RUN wget https://github.com/samtools/samtools/releases/download/1.11/samtools-1.11.tar.bz2
RUN tar -jxf samtools-1.11.tar.bz2
WORKDIR /samtools-1.11
RUN ./configure && make && make install
WORKDIR /
RUN rm -rf samtools-1.11 samtools-1.11.tar.bz2

0 comments on commit 2c279ca

Please sign in to comment.