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
!14
The source project of this merge request has been removed.
add STAR docker module
Closed
add STAR docker module
(removed):master
into
master
Overview
0
Commits
6
Pipelines
0
Changes
9
Closed
elabaron
requested to merge
(removed):master
into
master
5 years ago
Overview
0
Pipelines
0
Changes
9
Expand
0
0
Merge request reports
Compare
master
version 2
e7fe3c2b
5 years ago
version 1
c3bcb301
5 years ago
master (base)
and
latest version
latest version
b456c3b4
6 commits,
5 years ago
version 2
e7fe3c2b
4 commits,
5 years ago
version 1
c3bcb301
3 commits,
5 years ago
9 files
+
157
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
src/docker_modules/HTSeq/0.11.2/Dockerfile
0 → 100644
+
18
−
0
Options
FROM
ubuntu:18.04
MAINTAINER
Laurent Modolo
ENV
HTSEQ_VERSION=0.11.2
ENV
PACKAGES build-essential=12.4* \
python3-pip=9.0.1* \
python3-setuptools=39.0.1* \
python3-dev=3.6.7* \
python3-wheel=0.30.0*
RUN
apt-get update
&&
\
apt-get
install
-y
--no-install-recommends
${
PACKAGES
}
&&
\
apt-get clean
RUN
pip3
install
numpy
==
1.14.3
RUN
pip3
install
pysam
==
0.15.0
RUN
pip3
install
HTSeq
==
${
HTSEQ_VERSION
}
Loading