Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ascii-alignment-pileup
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
zavolan_group
tools
ascii-alignment-pileup
Merge requests
!2
build: add Dockerfile
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
build: add Dockerfile
add_dockerfile
into
main
Overview
0
Commits
4
Pipelines
0
Changes
3
Merged
Alex Kanitz
requested to merge
add_dockerfile
into
main
2 years ago
Overview
0
Commits
4
Pipelines
0
Changes
3
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
44e7ed0b
4 commits,
2 years ago
3 files
+
79
−
33
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
Dockerfile
0 → 100644
+
67
−
0
Options
##### BASE #####
FROM
rocker/r-ver:4.2.1
##### METADATA #####
MAINTAINER
zavolab-biozentrum@unibas.ch
LABEL
base.image="rocker/r-ver:4.2.1"
LABEL
version="1"
LABEL
software="ascii_alignment_pileup.R"
LABEL
software.version="1.0.1"
LABEL
software.description="Generates an ASCII-style pileup of read alignments in one or more BAM files against one or more regions specified in a BED file"
LABEL
software.website="https://git.scicore.unibas.ch/zavolan_group/tools/ascii-alignment-pileup"
LABEL
software.documentation="https://git.scicore.unibas.ch/zavolan_group/tools/ascii-alignment-pileup"
LABEL
software.license="https://spdx.org/licenses/Apache-2.0"
LABEL
software.tags="bioinformatics"
LABEL
maintainer="zavolab-biozentrum@unibas.ch"
LABEL
maintainer.organisation="Biozentrum, University of Basel"
LABEL
maintainer.location="Spitalstrasse 41, CH-4056 Basel, Switzerland"
LABEL
maintainer.lab="Zavolab"
LABEL
maintainer.license="https://spdx.org/licenses/Apache-2.0"
##### INSTALL #####
RUN
\
apt-get update
-y
\
&&
apt-get
install
-y
--no-install-recommends
\
apt-transport-https
\
curl
\
libbamtools-dev
\
libbz2-dev
\
libcurl4-gnutls-dev
\
liblzma-dev
\
libssl-dev
\
libxml2-dev
\
software-properties-common
\
zlib1g-dev
\
&&
apt-get autoremove
-y
\
&&
apt-get clean
\
&&
rm
-rf
/var/lib/apt/lists/
*
/tmp/
*
/var/tmp/
*
RUN
\
install2.r
\
--error
\
--skipinstalled
\
-r
"https://cran.rstudio.com"
\
-r
"http://www.bioconductor.org/packages/release/bioc"
\
-r
"https://bioconductor.org/packages/3.15/data/annotation"
\
optparse
\
rtracklayer
\
&&
rm
-rf
/tmp/downloaded_packages/
##### VARIABLES #####
ARG
WORKDIR="/home/bioc/"
ARG
USER="bioc"
ARG
GROUP="bioc"
ENV
PATH="${WORKDIR}:${PATH}"
##### COPY #####
COPY
./ascii_alignment_pileup.R ${WORKDIR}
COPY
./tests ${WORKDIR}/tests
##### USER #####
RUN
groupadd
-r
${
GROUP
}
&&
useradd
--no-log-init
-r
-g
${
GROUP
}
${
USER
}
##### ENVIRONMENT #####
WORKDIR
${WORKDIR}
RUN
chown
-R
${
USER
}
:
${
GROUP
}
${
WORKDIR
}
\
&&
chmod
700
${
WORKDIR
}
USER
${USER}
Loading