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

htseq: add singularity files

parent e8fe1028
No related branches found
No related tags found
No related merge requests found
#/bin/sh
sudo singularity build --force bin/htseq:0.8.0.sif src/singularity_modules/htseq/0.8.0/htseq.def
singularity sign bin/htseq:0.8.0.sif
Bootstrap: docker
From: ubuntu:18.04
%labels
MAINTAINER Laurent Modolo
%post
HTSEQ_VERSION=0.8.0
PACKAGES="build-essential \
python3-pip \
python3-setuptools \
python3-dev \
python3-wheel"
apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
pip3 install numpy==1.14.3
pip3 install pysam==0.15.0
pip3 install HTSeq==${HTSEQ_VERSION}
%environment
export HTSEQ_VERSION=0.8.0
%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