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
7732346d
There was a problem fetching the pipeline summary.
Commit
7732346d
authored
7 years ago
by
Amandine PERRIN
Browse files
Options
Downloads
Patches
Plain Diff
Install fastme and quicktree in docker image for tests
parent
3f740c94
No related branches found
No related tags found
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
for_tests/Dockerfile
+19
-4
19 additions, 4 deletions
for_tests/Dockerfile
with
19 additions
and
4 deletions
for_tests/Dockerfile
+
19
−
4
View file @
7732346d
...
...
@@ -9,8 +9,7 @@ RUN apt-get update &&\
# Install package needed and update pip
RUN
apt-get
install
-y
\
wget
\
python3-pip
\
cmake
# to install mmseqs
python3-pip
RUN
pip3
install
--upgrade
pip
...
...
@@ -41,7 +40,8 @@ RUN /tmp/prokka/bin/prokka --setupdb &&\
# Install mmseqs2
WORKDIR
/tmp
RUN
wget https://mmseqs.com/latest/mmseqs-static_sse41.tar.gz
&&
\
RUN
apt-get
install
-y
cmake
&&
\
wget https://mmseqs.com/latest/mmseqs-static_sse41.tar.gz
&&
\
tar
xf mmseqs-static_sse41.tar.gz
&&
\
rm
mmseqs-static_sse41.tar.gz
&&
\
mv
/tmp/mmseqs2/bin/mmseqs /usr/local/bin
&&
\
...
...
@@ -64,4 +64,19 @@ WORKDIR /tmp
RUN
wget http://www.microbesonline.org/fasttree/FastTree.c
&&
\
gcc
-DOPENMP
-fopenmp
-DUSE_DOUBLE
-Wall
-O3
-finline-functions
-funroll-loops
-o
FastTreeMP FastTree.c
-lm
&&
\
ln
-s
/tmp/FastTreeMP /usr/local/bin
# Install FastME
WORKDIR
/tmp
RUN
apt-get
install
-y
automake
&&
\
git clone https://gite.lirmm.fr/atgc/FastME.git
WORKDIR
/tmp/FastME
RUN
./configure
&&
\
make
&&
\
make
install
# Install quicktree
WORKDIR
/tmp
RUN
git clone https://github.com/tseemann/quicktree
WORKDIR
quicktree
RUN
make
&&
\
ln
-s
/tmp/quicktree/quicktree /usr/local/bin
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