Chapter Ensemble
Step 1. Installation
1.1 Install minicoda or anaconda
1.2 Setup python environment and packages for this book
# setup conda channels
conda config --add channels defaults
conda config --add channels bioconda
conda config --add channels conda-forge
# remove the incomplete environment if you did
conda env remove -n genome_book
# create the environment and install everything in one command!
# These packages will be used in this book
conda create -n genome_book \
python=3.7 \
pandas==1.0.3 \
seaborn=0.10.0 \
jupyter==1.0.0 \
jupyter_contrib_nbextensions==0.5.1 \
scikit-learn==0.22.2.post1 \
pysam==0.15.4 \
deeptools==3.4.2 \
pybedtools==0.8.1 \
scanpy=1.4 \
salmon==1.2.11.3 Use screen to start jupyter notebook
1.4 In jupyter notebook extension tab, select your favorite extensions

1.5 clone the repository from github



Last updated