Skip to content
Snippets Groups Projects
Verified Commit dffc6644 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

multiqc: add singularity files

parent 2c69d031
No related branches found
No related tags found
No related merge requests found
#/bin/sh
sudo singularity build --force bin/multiqc:1.0.sif src/singularity_modules/multiqc/1.0/multiqc.def
singularity sign bin/multiqc:1.0.sif
Bootstrap: docker
From: debian:stretch
%labels
MAINTAINER Laurent Modolo
%post
MULTIQC_VERSION=1.0
PACKAGES="build-essential \
python3-pip \
python3-setuptools \
python3-dev \
python3-wheel \
procps \
locales"
apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
locale-gen en_US.UTF-8
LC_ALL=en_US.utf-8
LANG=en_US.utf-8
LC_ALL=C.UTF-8
LANG=C.UTF-8
pip3 install multiqc==${MULTIQC_VERSION}
%environment
export KALLISTO_VERSION=0.44.0
export locale-gen en_US.UTF-8
export LC_ALL=en_US.utf-8
export LANG=en_US.utf-8
export LC_ALL=C.UTF-8
export LANG=C.UTF-8
%runscript
exec /bin/bash "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment