Skip to content
Snippets Groups Projects
Select Git revision
  • 231fd9e6a361a8095f07f32ce8c42b69f9409f8f
  • master default protected
  • z483800-master-patch-51086
  • 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

Bowtie2.def

Blame
  • Forked from LBMC / nextflow
    940 commits behind the upstream repository.
    Laurent Modolo's avatar
    231fd9e6
    History
    Bowtie2.def 410 B
    Bootstrap: docker
    From: ubuntu:18.04
    
    %labels
    MAINTAINER Laurent Modolo
    
    %post
    BOWTIE2_VERSION=2.3.4.1
    SAMTOOLS_VERSION=1.7
    PACKAGES="bowtie2=${BOWTIE2_VERSION}* \
    samtools=${SAMTOOLS_VERSION}* \
    perl=5.26.1*"
    
    apt-get update && \
    apt-get install -y --no-install-recommends ${PACKAGES} && \
    apt-get clean
    
    %environment
    export BOWTIE2_VERSION=2.3.4.1
    export SAMTOOLS_VERSION=1.7
    
    %runscript
    exec /bin/bash "$@"