Skip to content
Snippets Groups Projects
Select Git revision
  • 705226a9482733c67c18c799cfe394cf7af2ecda
  • master default protected
  • yjia01-master-patch-35664
  • 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

quantification_paired.nf

Blame
  • Forked from LBMC / nextflow
    Source project has a limited visibility.
    Dockerfile 748 B
    FROM ubuntu:18.04
    MAINTAINER Laurent Modolo
    
    ENV RSEM_VERSION=1.3.0
    ENV BOWTIE2_VERSION=2.3.4.1
    ENV SAMTOOLS_VERSION=1.7
    ENV PACKAGES git=1:2.17* \
       build-essential=12.4* \
       ca-certificates=20180409 \
       zlib1g-dev=1:1.2.11* \
       bowtie2=${BOWTIE2_VERSION}* \
       samtools=${SAMTOOLS_VERSION}*
    
    RUN apt-get update && \
        apt-get install -y --no-install-recommends ${PACKAGES} && \
        apt-get clean
    
    RUN git clone https://github.com/deweylab/RSEM.git RSEM_${RSEM_VERSION} && \
      cd RSEM_${RSEM_VERSION} && \
      git checkout tags/v${RSEM_VERSION} && \
      make && \
      cd .. && \
      mv RSEM_${RSEM_VERSION}/rsem-* RSEM_${RSEM_VERSION}/rsem_* RSEM_${RSEM_VERSION}/convert-* RSEM_${RSEM_VERSION}/extract-* /usr/bin/ && \
      rm -Rf RSEM_${RSEM_VERSION}