Skip to content

Instantly share code, notes, and snippets.

@nkrumm
Created April 14, 2020 20:57
Show Gist options
  • Save nkrumm/2feb6baa542e6d1ad43de5a496e230b3 to your computer and use it in GitHub Desktop.
Save nkrumm/2feb6baa542e6d1ad43de5a496e230b3 to your computer and use it in GitHub Desktop.
bwa-alignment dockerfile
FROM biocontainers/bwa:v0.7.17-3-deb_cv1
USER root
ENV DEBIAN_FRONTEND noninteractive
# seqtk
RUN apt-get update && (apt-get install -t buster-backports -y seqtk || apt-get install -y seqtk) && apt-get clean && apt-get purge && rm -rf /var/lib/apt/lists/* /tmp/*
# samtools
RUN apt-get update && (apt-get install -t buster-backports -y samtools || apt-get install -y samtools) && apt-get clean && apt-get purge && rm -rf /var/lib/apt/lists/* /tmp/*
# add nextflow tools
RUN apt-get update && apt-get install -y procps
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment