-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path002-computing.Rmd
More file actions
104 lines (75 loc) · 2.53 KB
/
002-computing.Rmd
File metadata and controls
104 lines (75 loc) · 2.53 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Data and Compute Setup
#### Course data downloads
:::: {.callout type="blue" title="Note"}
Some of these files are quite large. If you have issues downloading them, contact us at support@bioinformatics.ca.
::::
- [Module 123]()
- [Module 4]()
#### Compute setup
##### AWS Module
Connecting and properly using a cloud computing cluster at the CBW [here](https://bioinformaticsdotca.github.io/AWS_EPI23)
##### AMI
We have made our AWS AMI (Amazon Machine Image) publicly available. To launch your own instance, follow the instructions provided by Amazon on [how to launch an EC2 instance from a custom Amazon Machine Image](https://repost.aws/knowledge-center/launch-instance-custom-ami). Please note that you will need an AWS account to proceed, and that you will need to upload the CourseData files yourself.
Here are the details of the AMI:
- AWS Region: us-east-1 (N. Virgina)
- AMI type: public image
- AMI name: CBW_EPI_231005
- AMI ID: ami-0ae28d3f8e57ba8cf
If you want to create and activate a new AWS account, please follow the [instructions](https://aws.amazon.com/premiumsupport/knowledge-center/create-and-activate-aws-account/) provided by Amazon.
##### Software
###### conda
Install Miniconda by following the instructoion at [Miniconda official site](https://docs.conda.io/en/main/miniconda.html)
###### bedtools
```{}
wget https://github.com/arq5x/bedtools2/releases/download/v2.30.0/bedtools.static.binary
mv bedtools.static.binary bedtools
chmod +x bedtools
```
###### bwa
```{}
wget https://newcontinuum.dl.sourceforge.net/project/bio-bwa/bwa-0.7.17.tar.bz2
tar -jxvf bwa-0.7.17.tar.bz2
cd bwa-0.7.17/
```
###### make
```{}
#### FastQC
wget https://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v0.12.1.zip
unzip fastqc_v0.12.1.zip
```
###### samtools
```{}
wget https://github.com/samtools/samtools/releases/download/1.17/samtools-1.17.tar.bz2
tar -jxvf samtools-1.17.tar.bz2
cd samtools-1.17
make
sudo make install
```
###### picard
```{}
wget https://github.com/broadinstitute/picard/releases/download/3.1.0/picard.jar
```
###### deeptools
```{}
pip install deeptools
```
###### MACS2
```{}
pip install MACS2
```
###### Homer
```{}
wget http://homer.ucsd.edu/homer/configureHomer.pl
perl ./configureHomer.pl -install
perl ./configureHomer.pl -install hg19
perl ./configureHomer.pl -install hg38
```
###### UCSC tools'
```{}
rsync -aP hgdownload.soe.ucsc.edu::genome/admin/exe/linux.x86_64/ ./
```
###### Biamark
```{}
wget https://github.com/FelixKrueger/Bismark/archive/refs/tags/v0.24.2.tar.gz
tar -zxf v0.24.2.tar.gz
```