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

Dockerfile for panacota users

parent a8e3b551
No related branches found
No related tags found
No related merge requests found
Pipeline #106984 passed
......@@ -246,7 +246,7 @@ def prodigal_train(gpath, annot_folder):
logger=logger)
prodigalf.close()
prodigalferr.close()
if ret.returncode == 0:
if ret != 1 and ret.returncode == 0:
logger.log(utils.detail_lvl(), f"End training on {gpath}")
return gpath_train
else:
......
......@@ -157,11 +157,11 @@ RUN tar -xzf iqtree-2.0.6-Linux.tar.gz &&\
ln -s /install_dir/iqtree-2.0.6-Linux/bin/iqtree2 /usr/local/bin
# # # Install PanACoTA
# # WORKDIR /install-dir
# # RUN wget https://github.com/gem-pasteur/PanACoTA/archive/refs/tags/1.4.0.tar.gz
# # RUN tar -xzf v1.4.0.tar.gz
# # WORKDIR /install-dir/PanACoTA-1.4.0
# # RUN ./make
# # ENTRYPOINT ["/usr/local/bin/PanACoTA"]
# # CMD ['-h']
\ No newline at end of file
WORKDIR /install-dir
RUN wget https://github.com/gem-pasteur/PanACoTA/archive/refs/tags/v1.4.0.tar.gz
RUN tar -xzf v1.4.0.tar.gz
WORKDIR /install-dir/PanACoTA-1.4.0
RUN ./make
ENTRYPOINT ["/usr/local/bin/PanACoTA"]
CMD ['-h']
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment