-
Notifications
You must be signed in to change notification settings - Fork 266
Expand file tree
/
Copy pathDockerfile
More file actions
26 lines (21 loc) · 965 Bytes
/
Dockerfile
File metadata and controls
26 lines (21 loc) · 965 Bytes
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
################## BASE IMAGE ######################
FROM biocontainers/biocontainers:latest
################## METADATA ######################
LABEL base_image="biocontainers:latest"
LABEL version="2"
LABEL software="Samtools"
LABEL software.version="1.9"
LABEL about.summary="Tools for manipulating next-generation sequencing data"
LABEL about.home="https://github.com/samtools/samtools"
LABEL about.documentation="https://github.com/samtools/samtools"
LABEL about.license_file="https://github.com/samtools/samtools"
LABEL about.license_file="https://github.com/samtools/samtools/blob/develop/LICENSE"
LABEL about.license="SPDX:MIT"
LABEL about.tags="Genomics"
LABEL extra.identifiers.biotools="SAM"
################## MAINTAINER ######################
MAINTAINER John McGonigle <j.e.mcgonigle@gmail.com>
RUN conda install samtools=1.9
RUN conda install -c conda-forge ncurses # Fix to deal with the issue with libtinfow.so.5
WORKDIR /data/
CMD ["samtools"]