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

fastqc: add singularity files

parent cbd23ab6
No related branches found
No related tags found
No related merge requests found
#/bin/sh
sudo singularity build --force bin/fastqc:0.11.5.sif src/singularity_modules/fastqc/0.11.5/fastqc.def
singularity sign bin/fastqc:0.11.5.sif
Bootstrap: docker
From: ubuntu:18.04
%labels
MAINTAINER Laurent Modolo
%post
FASTQC_VERSION=0.11.5
PACKAGES="fastqc=${FASTQC_VERSION}* \
perl=5.26*"
apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
%environment
export FASTQC_VERSION=0.11.5
export PACKAGES=fastqc=${FASTQC_VERSION}*
%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