Skip to content
Snippets Groups Projects
Select Git revision
  • a480960829b92a9ce6612b33efc43fe37f1a0a85
  • master default protected
  • dev
  • 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
13 results

fasta_from_bed.nf

Blame
  • Forked from LBMC / nextflow
    Source project has a limited visibility.
    Dockerfile 509 B
    # SPDX-FileCopyrightText: 2022 Laurent Modolo <laurent.modolo@ens-lyon.fr>
    #
    # SPDX-License-Identifier: AGPL-3.0-or-later
    
    FROM python:3.9-slim
    MAINTAINER Lauret Modolo
    
    ENV DEEPTOOLS_VERSION=3.5.0
    RUN apt-get update -qq \
        && apt-get install --no-install-recommends --yes \
            build-essential \
            zlib1g-dev \
            libbz2-dev \
            liblzma-dev \
            libcurl4-gnutls-dev \
            libssl-dev \
            libncurses5-dev \
            procps
    RUN pip3 install deeptools==${DEEPTOOLS_VERSION}