Skip to content
Snippets Groups Projects
Commit 05012845 authored by Amandine  PERRIN's avatar Amandine PERRIN
Browse files

Add mafft installation

parent 5e793324
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -47,3 +47,14 @@ RUN wget https://mmseqs.com/latest/mmseqs-static_sse41.tar.gz &&\ ...@@ -47,3 +47,14 @@ RUN wget https://mmseqs.com/latest/mmseqs-static_sse41.tar.gz &&\
mv /tmp/mmseqs2/bin/mmseqs /usr/local/bin &&\ mv /tmp/mmseqs2/bin/mmseqs /usr/local/bin &&\
# remove useless files # remove useless files
rm -r /tmp/mmseqs2 rm -r /tmp/mmseqs2
# Install mafft 7.313
WORKDIR /tmp
RUN wget https://mafft.cbrc.jp/alignment/software/mafft-7.313-with-extensions-src.tgz &&\
tar xf mafft-7.313-with-extensions-src.tgz &&\
rm mafft-7.313-with-extensions-src.tgz
WORKDIR /tmp/mafft-7.313-with-extensions/core
RUN make clean &&\
make &&\
make install
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment