-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprep_jupyter.sh
More file actions
39 lines (26 loc) · 1007 Bytes
/
Copy pathprep_jupyter.sh
File metadata and controls
39 lines (26 loc) · 1007 Bytes
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
#!/bin/bash
source /srv/conda/etc/profile.d/conda.sh
conda create --name R python=3.9 -y
conda activate R
conda install mamba -n base -c conda-forge -y
conda update -n base conda -y
conda update --all -y
mamba create -n R -c conda-forge r-base -y
mamba install -c conda-forge r-essentials -y
conda config --add channels bioconda
conda config --add channels conda-forge
conda install pandas numpy -y
conda install -c bioconda sra-tools -y
conda install -c bioconda entrez-direct -y
conda install -c bioconda fastqc -y
conda install -c bioconda quast -y
conda install -c bioconda htseq -y
conda install -c bioconda seqtk -y
conda install -c bioconda samtools -y
conda install -c bioconda r-xml -y
conda install -c bioconda bioconductor-deseq2 -y
R -e "install.packages('BiocManager',repos='https://cran.ma.imperial.ac.uk/')"
R -e "install.packages('IRkernel')"
R -e "IRkernel::installspec()"
R -e "BiocManager::install(c('limma','edgeR','Glimma','org.Hs.eg.db', 'statmod'))"
pip3 install IPython