Skip to content

Commit

Permalink
Merge pull request #300 from jgriss/master
Browse files Browse the repository at this point in the history
Adds X!Tandem 17-02-01-4
  • Loading branch information
ypriverol authored Jan 10, 2019
2 parents d6fefa3 + 05d3c9a commit 8117b1a
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions tandem/17-02-01-4/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@

################## BASE IMAGE ######################
FROM biocontainers/biocontainers:v1.0.0_cv4

################## METADATA ######################
LABEL base_image="biocontainers:v1.0.0_cv4"
LABEL version="4"
LABEL software="tandem"
LABEL software.version="17-02-01-4"
LABEL about.summary="software that can match tandem mass spectra with peptide sequences"
LABEL about.home="http://www.thegpm.org/tandem/"
LABEL about.documentation="http://www.thegpm.org/tandem/"
LABEL about.license_file="http://www.thegpm.org/tandem/"
LABEL about.license="SPDX:Artistic-2.0"
LABEL about.tags="Proteomics"
LABEL extra.identifiers.biotools="xtandem"

################## MAINTAINER ######################
MAINTAINER Johannes Griss <[email protected]>

RUN ZIP=tandem-linux-17-02-01-4.zip && \
wget "ftp://ftp.thegpm.org/projects/tandem/source/${ZIP}" -O /tmp/$ZIP && \
# wget https://github.com/BioDocker/software-archive/releases/download/X!Tandem/$ZIP -O /tmp/$ZIP && \
unzip /tmp/$ZIP -d /home/biodocker/bin/ && \
chmod 755 /home/biodocker/bin/tandem-linux-17-02-01-4/bin/tandem.exe && \
rm /tmp/$ZIP

RUN bash -c 'echo -e "#!/bin/bash\n/home/biodocker/bin/tandem-linux-17-02-01-4/bin/tandem.exe \$@"' > /home/biodocker/bin/tandem && \
chmod 755 /home/biodocker/bin/tandem

ENV PATH /home/biodocker/bin:$PATH

USER biodocker

WORKDIR /data/

0 comments on commit 8117b1a

Please sign in to comment.