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
We can also check how many counts we have for each sample by making a bar plot. This helps us see whether there are any major discrepancies between the samples more easily.
MA plots enable us to visualise amount of expression (logCPM) versus logFC. Highly expressed genes are towards the right of the plot. We can also colour significant genes (e.g. genes with FDR < 0.05)
129
128
130
-
```{r}
129
+
```{r out.width = "40%"}
131
130
# perform differential testing
132
131
counts_de <-
133
132
counts_tt %>%
@@ -148,7 +147,7 @@ counts_de %>%
148
147
149
148
A more informative MA plot, integrating some of the packages in tidyverse.
150
149
151
-
```{r warning=FALSE}
150
+
```{rout.width = "40%", warning=FALSE}
152
151
counts_de %>%
153
152
pivot_transcript() %>%
154
153
@@ -167,9 +166,9 @@ counts_de %>%
167
166
```
168
167
169
168
170
-
## How to perform gene set analysis
169
+
## How to perform gene enrichment analysis
171
170
172
-
To run below you'll need the `clusterProfiler` and `org.Hs.eg.db` packages. This is just one suggestion, if you have other suggestions for how to do a 'tidy' pathway analysis feel free to [let us know](https://github.com/stemangiola/bioc_2020_tidytranscriptomics/blob/master/CONTRIBUTING.md).
171
+
To run below you'll need the `clusterProfiler` and `org.Hs.eg.db` packages. This is just one suggestion, adapted from [here](https://simon-anders.github.io/data_analysis_course/lecture9.html). If you have other suggestions for how to do a 'tidy' pathway analysis feel free to [let us know](https://github.com/stemangiola/bioc_2020_tidytranscriptomics/blob/master/CONTRIBUTING.md).
Copy file name to clipboardExpand all lines: vignettes/tidytranscriptomics.Rmd
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,7 @@ The tidytranscriptomics approach abstracts out the coding-related complexity and
82
82
* Create plots that summarise the information content of the data and analysis results
83
83
84
84
### Acknowledgements
85
-
This material was adapted from an R for RNA sequencing workshop first run [here](http://combine-australia.github.io/2016-05-11-RNAseq/).
85
+
This material was adapted from an R for RNA sequencing workshop first run [here](http://combine-australia.github.io/2016-05-11-RNAseq/). Use of the airway and pasilla datasets was inspired by the [DESeq2 vignette](http://bioconductor.org/packages/devel/bioc/vignettes/DESeq2/inst/doc/DESeq2.html).
- Dimensionality reduction (PCA or MDS) plots are very important for exploring the data
538
538
- Density plots, volcano plots, strip-charts and heatmaps are useful visualisation tools for evaluating the hypothesis testing.
539
539
540
+
## Supplementary
541
+
Some things we didn't have time to cover in this workshop can be found in the [Supplementary material](https://stemangiola.github.io/bioc_2020_tidytranscriptomics/articles/supplementary.html).
542
+
540
543
## Exercises
541
544
542
545
Try to apply what you've learned to another dataset. This dataset was generated from the pasilla package, which obtained the data from the paper by [@brooks2011conservation]. Here we provide it as a SummarizedExperiment object. The dataset has 7 samples from Drosophila (fruitfly): 3 treated with siRNA knockdown of the pasilla gene and 4 untreated controls.
0 commit comments