File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 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 <
[email protected] >
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/
You can’t perform that action at this time.
0 commit comments