pipeline-container-docker-demo01.md

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM condaforge/mambaforge
MAINTAINER liubo (liubo4@genomics.com)

# conda configure
RUN conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ &&\
conda config --add channels defaults &&\
conda config --add channels bioconda &&\
# install python
conda install python=3.9 pandas numpy pyvcf3 pyfaidx pysam pyyaml openpyxl xlrd scikit-allel scikit-learn matplotlib seaborn joblib tqdm -y &&\
# install vep=110 & perl library
conda install -c bioconda ensembl-vep==110 -y &&\
conda install perl-Excel-Writer-XLSX perl-Spreadsheet-XLSX perl-Spreadsheet-ParseExcel -y &&\
perl -MCPAN -e "install Spreadsheet::XLSX" &&\
conda update -c conda-forge perl-compress-raw-zlib -y && \
# install R & library
conda install -c conda-forge r-base && r-ggplot2 -y
-------------本文结束感谢您的阅读-------------