Skip to content
Snippets Groups Projects
Select Git revision
  • 4734f32a1c418c7c2b91813f0cea3065d30111ec
  • master default protected
  • dtorresc-master-patch-32428
  • dev
  • v0.4.0
  • v0.3.0
  • v0.2.9
  • v0.2.8
  • v0.2.7
  • v0.2.6
  • v0.1.0
  • v0.2.5
  • v0.2.4
  • v0.2.3
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.2
18 results

multiqc.def

Blame
  • Forked from LBMC / nextflow
    740 commits behind the upstream repository.
    Laurent Modolo's avatar
    Laurent Modolo authored
    4734f32a
    History
    multiqc.def 713 B
    Bootstrap: docker
    From: debian:stretch
    
    %labels
    MAINTAINER Laurent Modolo
    
    %post
    mkdir -p /sps /pbs /scratch
    MULTIQC_VERSION=1.7
    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 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 "$@"