Skip to content

Commit 7472d8b

Browse files
updated package installations for submodule 1,2,3
1 parent b05d0e6 commit 7472d8b

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

AWS/01-RNA-Seq/install_rna_seq_packages.sh

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
#!/bin/bash
22

3-
conda update -n base -c defaults conda -y
4-
53
# Create a conda environment
6-
conda create -n r-package-1 -y
4+
conda create -n r-rna-seq r-base=4.3.3 -y
75

86
# Consider addressing your conda initialization instead.
97
source ~/.bashrc
108

119
# Activate the Conda Environment
12-
conda activate r-package-1
10+
conda activate r-rna-seq
1311

1412
# Install packages
1513
conda install -c conda-forge -c bioconda bioconductor-deseq2 -y

AWS/02-RRBS/install_rrbs_packages.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
#!/bin/bash
22

33
# Create a conda environment
4-
conda create -n r-package-2 r-base=4.2.2 -y
4+
conda create -n r-rrbs r-base=4.3.3 -y
55

66
# Consider addressing your conda initialization instead.
77
source ~/.bashrc
88

99
# Activate the Conda Environment
10-
conda activate r-package-2
10+
conda activate r-rrbs
1111

1212
# Install packages
13+
conda install -c conda-forge r-data.table=1.16.4 -y
1314
conda install bioconda::bioconductor-methylkit -y
1415

1516
conda install bioconda::bioconductor-genomicranges -y

AWS/03-Integration/install_integration_packages.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/bin/bash
22

33
# Create a conda environment
4-
conda create -n r-package-3 r-base=4.3.3 -y
4+
conda create -n r-integration r-base=4.3.3 -y
55

66
# Consider addressing your conda initialization instead
77
source ~/.bashrc
88

99
# Activate the Conda Environment
10-
conda activate r-package-3
10+
conda activate r-integration
1111

1212
# Install packages
1313

0 commit comments

Comments
 (0)