Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nextflow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
LBMC
nextflow
Merge requests
!21
tophat dockerfile : fix beug and add bowtie1 installation
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
tophat dockerfile : fix beug and add bowtie1 installation
elabaron/nextflow:master
into
master
Overview
0
Commits
4
Pipelines
0
Changes
2
Merged
elabaron
requested to merge
elabaron/nextflow:master
into
master
4 years ago
Overview
0
Commits
4
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Viewing commit
d455e97e
Prev
Next
Show latest version
2 files
+
17
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
d455e97e
add ribotricer docker module
· d455e97e
elabaron
authored
4 years ago
src/.docker_modules/ribotricer/1.3.2/Dockerfile
0 → 100644
+
13
−
0
Options
FROM
ubuntu:20.04
MAINTAINER
Emmanuel Labaronne
ENV
RIBOTRICER_VERSION=1.3.2
ENV
PACKAGES python3\
python3-dev\
python3-pip
RUN
apt-get update
&&
\
apt-get
install
-y
${
PACKAGES
}
&&
\
apt-get clean
RUN
pip3
install
ribotricer
==
${
RIBOTRICER_VERSION
}
Loading