Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
panacota
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Amandine PERRIN
panacota
Commits
007b3a65
Commit
007b3a65
authored
1 year ago
by
Amandine PERRIN
Browse files
Options
Downloads
Patches
Plain Diff
Update dockerfile for version 1.4.1
parent
e20cee0f
Branches
master
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#134937
failed
11 months ago
Stage: test
Stage: coverage
Stage: doc
Stage: deploy
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
containers/Dockerfile
+27
-21
27 additions, 21 deletions
containers/Dockerfile
with
27 additions
and
21 deletions
containers/Dockerfile
+
27
−
21
View file @
007b3a65
...
...
@@ -9,6 +9,7 @@ ARG MASH_VER="v2.2"
ARG
PRODIGAL_VER="2.6.3"
ARG
MAFFT_VER="7.313"
ARG
FASTME_VER="2.1.6.1"
ARG
PANACOTA_VER="1.4.1"
# re-instantiating for the app build layer
ARG
PROKKA_VER
...
...
@@ -19,6 +20,7 @@ ARG MASH_VER
ARG
PRODIGAL_VER
ARG
MAFFT_VER
ARG
FASTME_VER
ARG
PANACOTA_VER
# Update apt-get packages
RUN
apt-get update
&&
\
...
...
@@ -55,10 +57,10 @@ RUN wget https://github.com/marbl/Mash/releases/download/${MASH_VER}/mash-Linux6
# Install dependencies for prokka:
# install tbl2asn manually since the one included with prokka is expired.
# Probably will have to do again in Dec 2021 unless Torsten removes it from prokka
RUN
wget ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools/converters/by_program/tbl2asn/linux64.tbl2asn.gz
-O
linux64.tbl2asn.gz
&&
\
gunzip
linux64.tbl2asn.gz
&&
\
mv
linux64.tbl2asn /usr/bin/tbl2asn
&&
\
chmod
755 /usr/bin/tbl2asn
#
RUN wget ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools/converters/by_program/tbl2asn/linux64.tbl2asn.gz -O linux64.tbl2asn.gz && \
#
gunzip linux64.tbl2asn.gz && \
#
mv linux64.tbl2asn /usr/bin/tbl2asn && \
#
chmod 755 /usr/bin/tbl2asn
# Install prokka
# RUN git clone https://github.com/tseemann/prokka.git
# RUN /install_dir/prokka/bin/prokka --setupdb &&\
...
...
@@ -83,19 +85,23 @@ WORKDIR /install_dir
# # Install bioperl
# RUN echo yes | cpan Bio::Perl
# # Install prokka
RUN
wget https://github.com/tseemann/prokka/archive/refs/tags/v
${
PROKKA_VER
}
.tar.gz
RUN
tar
-xzf
v
${
PROKKA_VER
}
.tar.gz
&&
\
rm
-rf
v
${
PROKKA_VER
}
.tar.gz
RUN
/install_dir/prokka-
${
PROKKA_VER
}
/bin/prokka
--setupdb
&&
\
ln
-s
/install_dir/prokka-
${
PROKKA_VER
}
/bin/prokka /usr/local/bin
# # install tbl2asn (used by prokka)
# RUN wget -O tbl2asn.gz https://ftp.ncbi.nlm.nih.gov/asn1-converters/by_program/table2asn/linux64.table2asn.gz &&\
# gunzip tbl2asn.gz &&\
# chmod +x tbl2asn &&\
# ln -s /install_dir/tbl2asn /usr/local/bin
# more Examples/commands/2-Annotate.sh
# PanACoTA annotate -d Examples/genomes_init -r Examples/2-res-prokka -l Examples/input_files/list_genomes.lst -n GENO --l90 3 --nbcont 10
# RUN wget https://github.com/tseemann/prokka/archive/refs/tags/v${PROKKA_VER}.tar.gz
# RUN tar -xzf v${PROKKA_VER}.tar.gz &&\
# rm -rf v${PROKKA_VER}.tar.gz
# RUN /install_dir/prokka-${PROKKA_VER}/bin/prokka --setupdb &&\
# ln -s /install_dir/prokka-${PROKKA_VER}/bin/prokka /usr/local/bin
# # # install tbl2asn (used by prokka)
# # RUN wget -O tbl2asn.gz https://ftp.ncbi.nlm.nih.gov/asn1-converters/by_program/table2asn/linux64.table2asn.gz &&\
# # gunzip tbl2asn.gz &&\
# # chmod +x tbl2asn &&\
# # ln -s /install_dir/tbl2asn /usr/local/bin
# # more Examples/commands/2-Annotate.sh
# # PanACoTA annotate -d Examples/genomes_init -r Examples/2-res-prokka -l Examples/input_files/list_genomes.lst -n GENO --l90 3 --nbcont 10
# Install prodigal
...
...
@@ -165,11 +171,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/v
1.4.0
.tar.gz
RUN
tar
-xzf
v
1.4.0
.tar.gz
WORKDIR
/install
-
dir/PanACoTA-
1.4.0
RUN
./make
WORKDIR
/install
_
dir
RUN
wget https://github.com/gem-pasteur/PanACoTA/archive/refs/tags/v
${
PANACOTA_VER
}
.tar.gz
RUN
tar
-xzf
v
${
PANACOTA_VER
}
.tar.gz
WORKDIR
/install
_
dir/PanACoTA-
${PANACOTA_VER}
RUN
./make
develop
ENTRYPOINT
["/usr/local/bin/PanACoTA"]
CMD
['-h']
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment