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

trimmomatic: add singularity files

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