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
38f367dd
Commit
38f367dd
authored
2 years ago
by
Nicolas Descostes
Browse files
Options
Downloads
Patches
Plain Diff
replace by revision
parent
0f931e97
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+7
-0
7 additions, 0 deletions
.gitlab-ci.yml
recipes/rpackages/bioconductor/genomeInfoDb/Singularity.genomeInfoDb-1323
+48
-0
48 additions, 0 deletions
...s/bioconductor/genomeInfoDb/Singularity.genomeInfoDb-1323
with
55 additions
and
0 deletions
.gitlab-ci.yml
+
7
−
0
View file @
38f367dd
...
...
@@ -36,6 +36,13 @@ image:
## WRITE YOUR TEST RULE HERE AFTER BRANCHING ON SUBMISSION AND CREATE A MERGE REQUEST
genomeInfoDb-1323-test
:
extends
:
.templateTest
variables
:
BASENAME
:
genomeInfoDb
TAG
:
1323
RECIPE_PATH
:
recipes/rpackages/bioconductor/genomeInfoDb
#####################
## Include
#####################
...
...
This diff is collapsed.
Click to expand it.
recipes/rpackages/bioconductor/genomeInfoDb/Singularity.genomeInfoDb-1323
0 → 100644
+
48
−
0
View file @
38f367dd
BootStrap: docker
From: ubuntu:bionic
%help
This singularity installs R v 4.2.1 and the genomeInfoDb package
%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.2.1
# ~~~~~ R packages ~~~~~ #
R --slave -e 'install.packages("BiocManager", repos="https://cloud.r-project.org/")'
R --slave -e 'BiocManager::install("GenomeInfoDb")'
%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