From 32e1ee387d19e37b50a6ae9b1887b4b1185d529d Mon Sep 17 00:00:00 2001 From: Niema Moshiri Date: Mon, 15 Apr 2024 12:06:16 -0700 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a666074..c8837d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get update && apt-get -y upgrade && \ pip install --no-cache-dir biopython && \ # Install htslib - wget -qO- "https://github.com/samtools/htslib/releases/download/1.18/htslib-1.18.tar.bz2" | tar -xj && \ + wget -qO- "https://github.com/samtools/htslib/releases/download/1.20/htslib-1.20.tar.bz2" | tar -xj && \ cd htslib-* && \ ./configure && \ make && \ @@ -52,7 +52,7 @@ RUN apt-get update && apt-get -y upgrade && \ rm -rf hisat2-* && \ # Install Minimap2 - wget -qO- "https://github.com/lh3/minimap2/archive/refs/tags/v2.27.tar.gz" | tar -zx && \ + wget -qO- "https://github.com/lh3/minimap2/archive/refs/tags/v2.28.tar.gz" | tar -zx && \ cd minimap2-* && \ make && \ chmod a+x minimap2 && \