Skip to content
Snippets Groups Projects
Verified Commit f594ce88 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

Bowtie2: add samtools to Dockerfile

parent 2a51f02d
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,10 @@ FROM ubuntu:18.04
MAINTAINER Laurent Modolo
ENV BOWTIE2_VERSION=2.3.4.1
ENV PACKAGES bowtie2=${BOWTIE2_VERSION}*
ENV SAMTOOLS_VERSION=1.7
ENV PACKAGES bowtie2=${BOWTIE2_VERSION}* \
samtools=${SAMTOOLS_VERSION}*
RUN apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment