File tree 1 file changed +47
-0
lines changed
1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # Create a conda environment
4
+ conda create -n r-package-3 r-base=4.3.3 -y
5
+
6
+ # Consider addressing your conda initialization instead
7
+ source ~ /.bashrc
8
+
9
+ # Activate the Conda Environment
10
+ conda activate r-package-3
11
+
12
+ # Install packages
13
+
14
+ conda install conda-forge::r-pvclust -y
15
+
16
+ conda install conda-forge::r-ggnewscale -y
17
+
18
+ conda install conda-forge::r-ggridges -y
19
+
20
+ conda install conda-forge::r-europepmc -y
21
+
22
+ conda install conda-forge::r-ggseqlogo -y
23
+
24
+ conda install bioconda::bioconductor-methreg -y
25
+
26
+ conda install bioconda::bioconductor-bsgenome -y
27
+
28
+ conda install bioconda::bioconductor-clusterprofiler -y
29
+
30
+ conda install bioconda::bioconductor-pathview -y
31
+
32
+ conda install bioconda::bioconductor-enrichplot -y
33
+
34
+ conda install bioconda::bioconductor-repitools -y
35
+
36
+ conda install bioconda::bioconductor-rnaagecalc -y
37
+
38
+ conda install bioconda::bioconductor-motifmatchr -y
39
+
40
+ conda install bioconda::bioconductor-tfbstools -y
41
+
42
+
43
+
44
+ R -e ' install.packages(c("IRkernel"), repos="http://cran.rstudio.com/")'
45
+
46
+ # Install the kernel specification for Jupyter
47
+ R -e ' IRkernel::installspec(name = "R-Intergration", displayname = "R-Intergration")'
You can’t perform that action at this time.
0 commit comments