Skip to content

Commit 5041753

Browse files
committed
MSGFPlus: updated recipe so the RUN instruction creating the bin doesn't expand into nothing
1 parent 98c94b8 commit 5041753

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

msgfp/9949/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM biocontainers/biocontainers:v1.0.0_cv4
44
################## METADATA ######################
55

66
LABEL base_image="biocontainers:v1.0.0_cv4"
7-
LABEL version="3"
7+
LABEL version="4"
88
LABEL software="MSGF+"
99
LABEL software.version="9949"
1010
LABEL about.summary="MS/MS database search tool"
@@ -22,7 +22,7 @@ RUN ZIP=MSGFPlus_9949.zip && \
2222
wget https://github.com/BioDocker/software-archive/releases/download/MSGFPlus/$ZIP -O /tmp/$ZIP && \
2323
unzip /tmp/$ZIP -d /home/biodocker/bin/MSGFPlus_9949/ && \
2424
rm /tmp/$ZIP && \
25-
bash -c 'echo -e "#!/bin/bash\njava -jar /home/biodocker/bin/MSGFPlus_9949/MSGFPlus.jar $@" > /home/biodocker/bin/MSGFPlus' && \
25+
bash -c "echo -e '#!/bin/bash\njava -jar /home/biodocker/bin/MSGFPlus_9949/MSGFPlus.jar \$@' > /home/biodocker/bin/MSGFPlus" && \
2626
chmod +x /home/biodocker/bin/MSGFPlus
2727

2828
ENV PATH /home/biodocker/bin/MSGFPlus:$PATH

0 commit comments

Comments
 (0)