forked from StaPH-B/docker-builds
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
64 lines (52 loc) · 1.99 KB
/
Dockerfile
File metadata and controls
64 lines (52 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
FROM ubuntu:focal as app
# for easy upgrade later. ARG variables only persist during build time.
ARG K2VER="2.1.2"
LABEL base.image="ubuntu:focal"
LABEL dockerfile.version="2"
LABEL software="Kraken2"
LABEL software.version="2.1.2"
LABEL description="Taxonomic sequence classifier"
LABEL website="https://github.com/DerrickWood/kraken2"
LABEL license="https://github.com/DerrickWood/kraken2/blob/master/LICENSE"
LABEL maintainer="Curtis Kapsak"
LABEL maintainer.email="kapsakcj@gmail.com"
# install dependencies and cleanup apt garbage
RUN apt-get update && apt-get -y --no-install-recommends install \
wget \
ca-certificates \
zlib1g-dev \
make \
g++ \
rsync \
cpanminus \
ncbi-blast+ && \
rm -rf /var/lib/apt/lists/* && apt-get autoclean
# perl module required for kraken2-build
RUN cpanm Getopt::Std
# DL Kraken2, unpack, and install
RUN wget https://github.com/DerrickWood/kraken2/archive/v${K2VER}.tar.gz && \
tar -xzf v${K2VER}.tar.gz && \
rm -rf v${K2VER}.tar.gz && \
cd kraken2-${K2VER} && \
./install_kraken2.sh . && \
mkdir /data /kraken2-db
ENV PATH="$PATH:/kraken2-${K2VER}" \
LC_ALL=C
WORKDIR /data
FROM app as test
RUN kraken2 --help && \
kraken2-build --help && \
kraken2 --version && \
blastn -version && \
dustmasker -version && \
segmasker -version
##### NO DATABASE INCLUDED WITH THIS DOCKER IMAGE #####
## User will need to mount a directory from their host machine that contains kraken2 database files
## to a directory in the container (/kraken2-db exists for this purpose, but feel free to use another location)
# DL MiniKraken2_8GB database. Built from RefSeq bacteria, archaea, viral, and human libraries.
# --strip-components=1 used so that the *.k2d files end up inside /kraken2-db and not another directory
#RUN mkdir /kraken2-db && \
# cd /kraken2-db && \
# wget --no-check-certificate https://genome-idx.s3.amazonaws.com/kraken/minikraken2_v2_8GB_201904.tgz && \
# tar -zxf --strip-components=1 minikraken2_v2_8GB_201904.tgz && \
# rm -rf minikraken2_v2_8GB_201904.tgz