You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rna_seq.md
+32-1Lines changed: 32 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ So to summarize we have:
27
27
* HBR + ERCC Spike-In Mix2, Replicate 2
28
28
* HBR + ERCC Spike-In Mix2, Replicate 3
29
29
30
-
You can download the data from [here](link)
30
+
You can download the data from [here](http://139.162.178.46/files/tutorials/toy_rna.tar.gz)
31
31
32
32
Unpack the data and go into the toy_rna directory
33
33
@@ -73,4 +73,35 @@ First, open up your favourite R IDE and install the necessary packages:
73
73
```R
74
74
source("https://bioconductor.org/biocLite.R")
75
75
biocLite("tximport")
76
+
biocLite("GenomicFeatures")
77
+
78
+
install.packages("readr")
79
+
```
80
+
81
+
Then load the modules:
82
+
83
+
```R
84
+
library(tximport)
85
+
library(GenomicFeatures)
86
+
library(readr)
87
+
```
88
+
89
+
Salmon did the quantifiation of the transcript level. We want to see which genes are differentially expressed, so we need to link the transcripts name to the gene names. We can use our .gtf annotation for that, and the GenomicFeatures package:
0 commit comments