Skip to content

Commit

Permalink
update docker for methylpy dmr build
Browse files Browse the repository at this point in the history
  • Loading branch information
rbpisupati committed Feb 5, 2020
1 parent 1d802db commit 483d169
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
FROM nfcore/base
MAINTAINER Phil Ewels <[email protected]>
LABEL authors="[email protected]" \
description="Docker image containing all requirements for the nf-core/methylseq pipeline"

#############################################################
# Dockerfile tools for methylpy
#############################################################
FROM continuumio/anaconda3
MAINTAINER Rahul Pisupati <[email protected]>
LABEL authors="[email protected]" \
description="Docker image containing all requirements for the nf-core/methylpy pipeline"
USER root
RUN apt-get -y -m update && apt-get install -y wget unzip zip libgsl-dev libgsl2 bzip2 build-essential git zlib1g-dev lib32z1-dev
COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a
ENV PATH /opt/conda/envs/nfcore-methylseq/bin:$PATH
RUN git clone https://github.com/yupenghe/methylpy.git
RUN g++ -O3 -l gsl -l gslcblas -o /opt/conda/envs/nfcore-methylseq/bin/run_rms_tests.out rms.cpp

0 comments on commit 483d169

Please sign in to comment.