Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • descoste/singularityhub-emblrome
1 result
Show changes
Commits on Source (11)
...@@ -36,7 +36,7 @@ image: ...@@ -36,7 +36,7 @@ image:
## WRITE YOUR TEST RULE HERE AFTER BRANCHING ON SUBMISSION AND CREATE A MERGE REQUEST ## WRITE YOUR TEST RULE HERE AFTER BRANCHING ON SUBMISSION AND CREATE A MERGE REQUEST
##################### #####################
# Image analysis # Image analysis
##################### #####################
...@@ -67,6 +67,7 @@ include: ...@@ -67,6 +67,7 @@ include:
include: include:
- local: "yaml-files/analysissuites/deeptools-deploy.yaml" - local: "yaml-files/analysissuites/deeptools-deploy.yaml"
- local: "yaml-files/analysissuites/samtools-deploy.yaml"
##################### #####################
......
BootStrap: docker
From: ubuntu:bionic
%help
This singularity installs picard tools v 2.22.1
%post
# ~~~~~~ General setup and folder creation ~~~~~~ #
apt-get update && apt-get install -y wget libreadline-dev
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-latest-Linux-x86_64.sh && \
bash Miniconda3-latest-Linux-x86_64.sh -b -p /conda && \
rm -f Miniconda3-latest-Linux-x86_64.sh
export PATH="/conda/bin:${PATH}"
# ~~~~ R v 4.1.2 ~~~~~~ #
conda install -c conda-forge r-base=4.1.2
# ~~~~~ PICARD TOOLS ~~~~~ #
conda install -y -c bioconda picard=2.22.1
%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
BootStrap: docker
From: ubuntu:bionic
%help
This singularity installs picard tools v 2.27.1
%post
# ~~~~~~ General setup and folder creation ~~~~~~ #
apt-get update && apt-get install -y wget libreadline-dev
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-latest-Linux-x86_64.sh && \
bash Miniconda3-latest-Linux-x86_64.sh -b -p /conda && \
rm -f Miniconda3-latest-Linux-x86_64.sh
export PATH="/conda/bin:${PATH}"
# ~~~~ R v 4.1.2 ~~~~~~ #
conda install -c conda-forge r-base=4.1.2
# ~~~~~ PICARD TOOLS ~~~~~ #
conda install -y -c bioconda picard=2.27.1
%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
Bootstrap: docker
From: bschiffthaler/samtools:1.14
%runscript
echo "Running container bschiffthaler/samtools:1.14, samtools v1.14"
exec /bin/bash "$@"
%post
mkdir /cluster /work /tsd /projects
%labels
Author Nicolas Descostes
samtools-114-builddeploy:
extends: .templateBuildDeploy
variables:
BASENAME: samtools
TAG: 114
RECIPE_PATH: recipes/analysissuites/samtools
only:
changes:
- recipes/analysissuites/samtools/Singularity.samtools-114
samtools-114-test:
extends: .templateTest
variables:
BASENAME: samtools
TAG: 114
RECIPE_PATH: recipes/analysissuites/samtools