Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
singularityhub-EMBLRome
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Nicolas Descostes
singularityhub-EMBLRome
Commits
d0723e08
Commit
d0723e08
authored
2 years ago
by
Nicolas Descostes
Browse files
Options
Downloads
Patches
Plain Diff
deletion
parent
83f5e27f
No related branches found
No related tags found
1 merge request
!30
bedops test
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
recipes/R-packages/snakemake-pipelines/ChIPSeq/Singularity.snakemakeChIPSeq-v001
+0
-50
0 additions, 50 deletions
...emake-pipelines/ChIPSeq/Singularity.snakemakeChIPSeq-v001
with
0 additions
and
50 deletions
recipes/R-packages/snakemake-pipelines/ChIPSeq/Singularity.snakemakeChIPSeq-v001
deleted
100644 → 0
+
0
−
50
View file @
83f5e27f
BootStrap: docker
From: ubuntu:bionic
%help
This singularity installs R v 4.1.1 and required packages for the official ChIPSeq snakemake pipeline
%post
# ~~~~~~ General setup and folder creation ~~~~~~ #
apt-get update && apt-get install -y wget build-essential libxml2
export LC_ALL=C
export LC_CTYPE=C
export LC_COLLATE=C
export LC_TIME=C
export LC_MESSAGES=C
export LC_MONETARY=C
export LC_PAPER=C
export LC_MEASUREMENT=C
# ~~~~~ MINICONDA ~~~~~ #
wget https://repo.continuum.io/miniconda/Miniconda3-4.7.12.1-Linux-x86_64.sh && \
bash Miniconda3-4.7.12.1-Linux-x86_64.sh -b -p /conda && \
rm -f Miniconda3-4.7.12.1-Linux-x86_64.sh
export PATH="/conda/bin:${PATH}"
# ~~~~~ R v 4.1.1 ~~~~~ #
conda install -c conda-forge r-base=4.1.1
# ~~~~~ R packages ~~~~~ #
R --slave -e 'install.packages("BiocManager", repos="https://cloud.r-project.org/")'
R --slave -e 'BiocManager::install("GenomeInfoDb")'
R --slave -e 'BiocManager::install("stringr")'
R --slave -e 'BiocManager::install("csaw")'
%environment
export PATH="${PATH}:/conda/bin"
export LC_ALL=C
export LC_CTYPE=C
export LC_COLLATE=C
export LC_TIME=C
export LC_MESSAGES=C
export LC_MONETARY=C
export LC_PAPER=C
export LC_MEASUREMENT=C
%labels
Author Nicolas Descostes
Version v0.0.1
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