Skip to content
Snippets Groups Projects
Select Git revision
  • 4fa9a1b1d9185a495066370e92b8d6a75b0c9ba4
  • master default protected
  • tp_experimental_biologists
3 results

quantification_single.nf

Blame
  • Forked from LBMC / nextflow
    Source project has a limited visibility.
    Dockerfile 437 B
    FROM ubuntu:18.04
    MAINTAINER Laurent Modolo
    
    ENV PACKAGES git=1:2.17* \
       build-essential=12.4* \
       ca-certificates=20180409 \
       zlib1g-dev=1:1.2.11*
    
    RUN apt-get update && \
        apt-get install -y --no-install-recommends ${PACKAGES} && \
        apt-get clean
    
    RUN git clone https://github.com/l-modolo/UrQt.git && \
      cd UrQt && \
      git checkout ${URQT_VERSION} && \
      make && \
      cd .. && \
      mv UrQt/UrQt /usr/bin/ && \
      rm -Rf UrQt