forked from gagneurlab/MMSplice_MTSplice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
38 lines (29 loc) · 815 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
FROM ensemblorg/ensembl-vep
USER root
ENV DEBIAN_FRONTEND noninteractive
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
ENV PATH /opt/conda/bin:$PATH
# Updates
RUN apt-get update
RUN apt-get install -y --no-install-recommends apt-utils
RUN apt-get -y upgrade
RUN apt-get install -y wget
# conda installation
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ./miniconda.sh && \
/bin/bash ./miniconda.sh -b -p /opt/conda && \
rm ./miniconda.sh
# python pip updates
RUN conda install python=3.6
RUN pip install --upgrade pip
RUN python -V
RUN pip -V
COPY . ./mmsplice
WORKDIR ./mmsplice
RUN mkdir /root/.vep
RUN mkdir /root/.vep/Plugins/
RUN cp ./VEP_plugin/MMSplice.pm /root/.vep/Plugins/MMSplice.pm
RUN pip install -e .
WORKDIR ..
RUN mkdir outputs
RUN mmsplice
CMD ./vep