-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlecture6.Rmd
167 lines (115 loc) · 9.47 KB
/
lecture6.Rmd
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
Example data
------------
We use data from this study:
Himes et al.: *RNA-Seq transcriptome profiling identifies CRISPLD2 as a glucocorticoid responsive gene that modulates cytokine function in airway smooth muscle cells.* [PLoS One, 2014, 9:](doi.org://10.1371/journal.pone.0099625).
They have derived cell lines from airway smooth muscle cells obtained from the airways of four human donors, and tested the effect of two drugs, dexamathasone and albuterol on the trabnscriptome. For each cell line, they have four RNA-Seq samples, one for each of the four experimental conditons of treatment with dexamethasone, with albnuterol, with both and with neither drug.
Demamethasone is a synthetic glucocorticoid, and albuterol (a.k.a. salbutamol) is a bronchodilator, which is used e.g., in astma inhalers. It is an agonist of the β2 adrenoreceptor, which mediates relaxation of smooth muscle cells.
The sequencing reads from the 16 sequencing libraries have been deposited by the authors at the [Gene Expression Omnibus](https://www.ncbi.nlm.nih.gov/geo/) under accession number GSE52778. Finding the actual reads requries a bit of clickling around in the maze that is
GEO and SRA, and leads us eventually to Short read Archive (SRA) accession [SRP033351](https://www.ncbi.nlm.nih.gov/sra?term=SRP033351). Clicking there on the link "Send to Run Selector", we can download the "Runinfo Table"
We load this table in R
```{r}
library( tidyverse )
```
```{r}
read_tsv( "run_table.txt" )
```
This is just a table with one row per library and many columns with various relevant and less relevant information on the libraries. Most important for us are the columns `cell_line` and `treatment`, as they contain the experimental conditions, as well as the `Run` accession number, which is the ID under which we can download the data from the Short Read Archive (SRA).
```{r}
read_tsv( "run_table.txt" ) %>%
select( Run, cell_line, treatment ) -> run_table
run_table
```
Downloading the reads
---------------------
To download the read, we need the utility "`fastq-dump`" from the SRA Toolkit. So, we first need to download the [SRA Toolkit](https://www.ncbi.nlm.nih.gov/sra/docs/toolkitsoft/) from the NCBI web site, and install it. Then, we can write in the command line a command like
```sh
fastq-dump --split-files SRR1039508
```
The option `--split-files` is required because these are paired-end libraries, and we need to download two files for each run. The above command will produce two FASTQ files, named `SRR1039508_1.fastq` and `SRR1039508_2.fastq`, with the reads of the 5' and the 3' ends of each cDNA fragment.
We can write a simple R command to produce `fastq-dump` commands for all 16 files.
```{r}
str_c( "fastq-dump --split-files ", run_table$Run, " &\n" ) %>% cat
```
You can copy and paste these commands into your shell. The ampersand (`&`) will cause all commands to start at the same time. After several hours, you will have all the files.
Here is how the first 12 lines of one such file loook like
```
$ head -12 SRR1039512_1.fastq
@SRR1039512.1 HWI-ST177:314:C12K6ACXX:1:1101:1207:2192 length=63
ACGACAGGTCATCGTTCAAGCAGAATGCAGACAGGCCATTCACGAGCCCAAGTTGAAGAGAAG
+SRR1039512.1 HWI-ST177:314:C12K6ACXX:1:1101:1207:2192 length=63
FBDEFIDH2AGHIICDHGBDDFGGGDH<FFEA;FH=;BGGA@DFGB<EEE=??CCC>C>;=A?
@SRR1039512.2 HWI-ST177:314:C12K6ACXX:1:1101:1206:2234 length=63
GGTGAGGGACTGAGGCCCCTAAATTTTGGTCCCAGGGGAAAGGAAGAGGCCAGTTGGTCCAGT
+SRR1039512.2 HWI-ST177:314:C12K6ACXX:1:1101:1206:2234 length=63
HI@EBFGHCGGBGGI@GHGHHGHGIIIIIIGIIIIAHH>BFEEAEDBD?=?AB::AC85@3>A
@SRR1039512.3 HWI-ST177:314:C12K6ACXX:1:1101:1377:2202 length=63
ATATTGGCTTTATCTGTACAGGTTCCTTCATCACAAAACCAGTAACTTCCAGTGGATGAAGGC
+SRR1039512.3 HWI-ST177:314:C12K6ACXX:1:1101:1377:2202 length=63
HJFJJJIIJJJJJJJIIJIIIJIGHIJJIJIJJJIDHIJJJJHIIIJJIJJJHIJJIIIHIH?
```
These are the 5' ends of the first three fragments. For each fragment, we have four lines: Read ID, sequence, "+" sign, quality string. For details, see the Wikipedia page
on the FASTQ format.
Building an index
-----------------
Next, we need to *align* the reads to the genome, i.e., to find for each read where in the genome it maps. For this, we need a tool called an *aligner*. We use the *subread*
aligner by Liao et al. ([Nucleic Acids Res., 2013, 41:e108](http://doi.org/10.1093/nar/gkt214)), which you first need to [install](http://bioinf.wehi.edu.au/subread-package/).
Then, as a preparation for installing, we need to download the full DNA sequence of the human genome and ask subread to transform it into an *index*, which it will then use
as reference to quickly look up sequences when searching for alignments.
We download the genome from the [Ensembl FTP site](https://www.ensembl.org/info/data/ftp/index.html). Go to "DNA (FASTA)" for Homo sapiens; there, download the "DNA primary assembly" FASTA file, then unpack it
```sh
wget ftp://ftp.ensembl.org/pub/release-94/fasta/homo_sapiens/dna/Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz
gunzip dna/Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz
```
As the file name tells you, this is genome "GRCh38", i.e., version 38 of the human genome
assembly as provided by the [Genome Reference Consortium (GRC)](https://www.ncbi.nlm.nih.gov/grc). It is important
to keep track of the assembly version, or you will mix up gene coordinates.
We let subread build the index
```sh
subread-buildindex -o GRCh38 Homo_sapiens.GRCh38.dna.primary_assembly.fa
```
It produces five files, some of them very large, whose names start with `GRCh38`, as specified with `-o`. (This stands for Genome Reference Consortium, human genome, reference assembly version 38 -- which is what we have downloaded.)
Aligning the reads
------------------
To align the reads from a specific run, say, `SRR1039508`, we use a command like
```sh
subread-align -i GRCh38 -r SRR1039508_1.fastq -R SRR1039508_2.fastq -o SRR1039508.bam -t 0 -T 2
```
The options used are as follows: `-i` tells the aligner which index to use. We indicate the files we have just produced with `subread-buildindex` by specifying `GRCh38`. Next, we
give the pair of FASTQ files, first (after `-r`) the first-pass reads, then (after `-R`) the second-pass reads. Then we specify the output file after `-o`, using the extension `bam`. Last, we clarify that these are RNA and not DNA reads (`-t 0`) and that two CPUs should be used in parallel (`-T 2`, use more if you have them).
Again, we can use R produce all 16 commands for us. This ensure that we do not make a mistake and mix up run IDs.
```{r}
str_c( "subread_align -i GRCh38 -r ", run_table$Run, "_1.fastq -R ", run_table$Run, "_2.fastq -o ", run_table$Run, ".bam -t 0 -T 2\n" ) %>% cat
```
If you paste them all into your command line, they will be executed one after the other. After a few hours, everything will be aligned.
We can inspect an alignment file with
```sh
samtools view SRR1039508.bam | less -S
```
using the [samtools suite](http://www.htslib.org/). Do so and try to understand some of the columns, following
the [description of the SAM format](https://en.wikipedia.org/wiki/SAM_(file_format)) on Wikipedia.
You can the [Integrated Genome Viewer](http://software.broadinstitute.org/software/igv/) (IGV) to check out
the alignments. Do so and observe how the read pairs map to the exons. When using IGV, make sure you choose
the right genome assembly.
# Counting
Next, we want to know, for each BAM file, how many of the reads align to each of the genes. This can be done
with [featureCount](http://bioinf.wehi.edu.au/featureCounts/) by Liao et al. ([Bioinformatics (2014) 30:923](doi.org/10.1093/bioinformatics/btt656)). This tool is a refinement and a faster replacement for [htseq-count](https://htseq.readthedocs.io/en/release_0.11.1/count.html) (Anders et al., [Bioinformatics (2014) 31:166](https://doi.org/10.1093/bioinformatics/btu638)), which is used in many workflows.
For this, we need a file with gene annotation, i.e., informations about the coordinates where genes, transcripts
and exons start and end. These can be found for many species in the "Gene sets" column of the [Ensembl download page](https://www.ensembl.org/info/data/ftp/index.html). We use the file [`Homo_sapiens.GRCh38.95.gtf`](ftp://ftp.ensembl.org/pub/release-95/gtf/homo_sapiens/Homo_sapiens.GRCh38.95.gtf.gz),
which gives the gene annotation from Release 95 of Ensembl, using the coordinates of the GRCh38 genome assembly.
We call `featureCounts` with this command
```sh
featureCounts -p -T 8 -a Homo_sapiens.GRCh38.94.gtf -o featureCounts.out \
SRR1039508.bam SRR1039509.bam SRR1039510.bam SRR1039511.bam SRR1039512.bam \
SRR1039513.bam SRR1039514.bam SRR1039515.bam SRR1039516.bam SRR1039517.bam \
SRR1039518.bam SRR1039519.bam SRR1039520.bam SRR1039521.bam SRR1039522.bam \
SRR1039523.bam
```
First, the backslashes merely indicate that the command is broken in several lines.
We use the following options: `-a Homo_sapiens.GRCh38.94.gtf` tells featureCounts
to use the reference annotation that we have just downloaded. `-o featureCount.out` specifies
the file name to save the resulting count table. `-p` directs featureCount to count paired reads
as one cDNA fragment, not as two reads. `-T 8` means to use 8 CPU cores in parallel. (This makes sense
only if you have as many cores in your computer.) Then, we list all the BAM files for which we want counts.
A full description can be found in the [Subread package user guide](http://bioinf.wehi.edu.au/subread-package/SubreadUsersGuide.pdf).
After about half an hour, featureCounts finished, and writes out a file with a table of
counts. We will examine this table in the next lesson.