File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
spectra-cluster-cli/v1.1.2 Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ # ################# BASE IMAGE ######################
2+ FROM biocontainers/biocontainers:latest
3+
4+ # ################# METADATA ######################
5+ LABEL base_image="biocontainers:latest"
6+ LABEL version="1"
7+ LABEL software="spectra-cluster-cli"
8+ LABEL software.version="v1.1.2"
9+ LABEL about.summary="PRIDE Cluster algorithm to cluster heterogeneous mass spectra"
10+ LABEL about.home="https://github.com/spectra-cluster/spectra-cluster-cli"
11+ LABEL about.documentation="https://github.com/spectra-cluster/spectra-cluster-cli"
12+ LABEL about.license_file="https://github.com/spectra-cluster/spectra-cluster-cli/LICENSE"
13+ LABEL about.license="SPDX:Apache-2.0"
14+ LABEL about.tags="Proteomics"
15+
16+ # ################# MAINTAINER ######################
17+ MAINTAINER Johannes Griss <
[email protected] >
18+
19+ RUN VERSION=1.1.2 && \
20+ ZIP=spectra-cluster-cli-${VERSION}-bin.zip && \
21+ wget https://github.com/spectra-cluster/spectra-cluster-cli/releases/download/spectra-cluster-cli-${VERSION}/$ZIP -O /tmp/$ZIP && \
22+ unzip /tmp/$ZIP -d /home/biodocker/bin/ && \
23+ rm /tmp/$ZIP && \
24+ bash -c 'echo -e "#!/bin/bash\n java -jar /home/biodocker/bin/spectra-cluster-cli-1.1.2.jar $@" > /home/biodocker/bin/spectra-cluster-cli' && \
25+ chmod +x /home/biodocker/bin/spectra-cluster-cli
26+
27+ ENV PATH /home/biodocker/bin/spectra-cluster-cli:$PATH
28+
29+ WORKDIR /data/
You can’t perform that action at this time.
0 commit comments