Skip to content

Commit 36d8195

Browse files
jgrissosallou
authored andcommitted
spectra-cluster-cli v1.1.2 (#292)
1 parent 10dd911 commit 36d8195

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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\njava -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/

0 commit comments

Comments
 (0)