-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
39 lines (34 loc) · 1.02 KB
/
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
39
FROM continuumio/miniconda3
MAINTAINER Simone Maestri <[email protected]>
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get install -y \
build-essential \
wget \
unzip \
bzip2 \
git \
libidn11* \
nano \
less \
wget \
r-base \
libcurl4-openssl-dev \
libxml2-dev \
libssl-dev \
gfortran \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN conda install -c bioconda -c conda-forge f5c python=3.8 minimap2 samtools
RUN /opt/conda/bin/python -m pip install --upgrade pip
RUN /opt/conda/bin/python -m pip install Cython numpy
RUN /opt/conda/bin/python -m pip install m6anet
ENV PATH=/opt/conda/bin/:$PATH
RUN git clone https://github.com/hasindu2008/f5c.git
RUN /f5c/scripts/install-vbz.sh
ENV HDF5_PLUGIN_PATH=/root/.local/hdf5/lib/plugin
RUN R -e "install.packages('xml2')"
RUN R -e "install.packages('BiocManager')"
RUN R -e "BiocManager::install('IRanges')"
RUN R -e "BiocManager::install('GenomicRanges')"
RUN R -e "BiocManager::install('ensembldb')"