Skip to content
Snippets Groups Projects
Verified Commit aaa243c8 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

emase: working Dockerfile for emase to install it from conda

parent bde11db3
No related branches found
No related tags found
No related merge requests found
FROM python:2.7 FROM conda/miniconda2
MAINTAINER Laurent Modolo MAINTAINER Laurent Modolo
ENV EMASE_VERSION=0.10.16 ENV EMASE_VERSION=0.10.16
RUN conda init \
RUN && conda config --add channels r \
apt-get update \ && conda config --add channels bioconda \
&& apt-get install -y python-h5py libhdf5-dev \ && conda create -y -n emase jupyter
&& pip install tables \ SHELL ["conda", "run", "-n", "emase", "/bin/bash", "-c"]
&& pip install scipy \ RUN conda install -y -c kbchoi emase \
&& pip install pysam \ && echo "conda activate emase" >> /root/.bashrc
&& pip install numpy==1.8.2 \
&& pip install numexpr==2.3.1 \ ENV PATH /usr/local/envs/emase/bin:/usr/local/condabin:$PATH
&& pip install cython>=0.13 \
&& pip install tables==3.1.0 \
&& pip install emase==${EMASE_VERSION}
pip install numpy==1.8.2
pip install numexpr==2.3.1
pip install scipy==0.13.3
pip install pysam>=0.6
pip install cython>=0.13
pip install tables
pip install biopython>=1.63
CMD ["bash"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment