diff --git a/src/singularity_modules/macs2/2.1.2/macs2.def b/src/singularity_modules/macs2/2.1.2/macs2.def new file mode 100644 index 0000000000000000000000000000000000000000..0b56223a2882aa70ef771fff67790d4b8fbcd9b5 --- /dev/null +++ b/src/singularity_modules/macs2/2.1.2/macs2.def @@ -0,0 +1,28 @@ +Bootstrap: docker +From: ubuntu:18.04 +%labels +MAINTAINER Laurent Modolo +%post + +MACS_VERSION=2.1.2 +PACKAGES="git \ +build-essential \ +python-pip \ +ca-certificates \ +python-setuptools \ +python-dev \ +python-numpy \ +python-wheel \ +zlib1g-dev" + +apt-get update && \ +apt-get install -y --no-install-recommends ${PACKAGES} && \ +apt-get clean + +pip install MACS2==${MACS_VERSION} + +%environment +export MACS_VERSION=2.1.1.20160309 + +%runscript +exec /bin/bash "$@"