Skip to content

Commit 8117b1a

Browse files
authoredJan 10, 2019
Merge pull request #300 from jgriss/master
Adds X!Tandem 17-02-01-4
2 parents d6fefa3 + 05d3c9a commit 8117b1a

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
 

‎tandem/17-02-01-4/Dockerfile

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
2+
################## BASE IMAGE ######################
3+
FROM biocontainers/biocontainers:v1.0.0_cv4
4+
5+
################## METADATA ######################
6+
LABEL base_image="biocontainers:v1.0.0_cv4"
7+
LABEL version="4"
8+
LABEL software="tandem"
9+
LABEL software.version="17-02-01-4"
10+
LABEL about.summary="software that can match tandem mass spectra with peptide sequences"
11+
LABEL about.home="http://www.thegpm.org/tandem/"
12+
LABEL about.documentation="http://www.thegpm.org/tandem/"
13+
LABEL about.license_file="http://www.thegpm.org/tandem/"
14+
LABEL about.license="SPDX:Artistic-2.0"
15+
LABEL about.tags="Proteomics"
16+
LABEL extra.identifiers.biotools="xtandem"
17+
18+
################## MAINTAINER ######################
19+
MAINTAINER Johannes Griss <johannes.griss@meduniwien.ac.at>
20+
21+
RUN ZIP=tandem-linux-17-02-01-4.zip && \
22+
wget "ftp://ftp.thegpm.org/projects/tandem/source/${ZIP}" -O /tmp/$ZIP && \
23+
# wget https://github.com/BioDocker/software-archive/releases/download/X!Tandem/$ZIP -O /tmp/$ZIP && \
24+
unzip /tmp/$ZIP -d /home/biodocker/bin/ && \
25+
chmod 755 /home/biodocker/bin/tandem-linux-17-02-01-4/bin/tandem.exe && \
26+
rm /tmp/$ZIP
27+
28+
RUN bash -c 'echo -e "#!/bin/bash\n/home/biodocker/bin/tandem-linux-17-02-01-4/bin/tandem.exe \$@"' > /home/biodocker/bin/tandem && \
29+
chmod 755 /home/biodocker/bin/tandem
30+
31+
ENV PATH /home/biodocker/bin:$PATH
32+
33+
USER biodocker
34+
35+
WORKDIR /data/

0 commit comments

Comments
 (0)