-
Notifications
You must be signed in to change notification settings - Fork 6
/
3.2-Module3lab_gsea.Rmd
376 lines (203 loc) · 18.7 KB
/
3.2-Module3lab_gsea.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
# Module 3 Lab: GSEA Visualization {#gsea_mod3}
**This work is licensed under a [Creative Commons Attribution-ShareAlike 3.0 Unported License](http://creativecommons.org/licenses/by-sa/3.0/deed.en_US). This means that you are able to copy, share and modify the work, as long as the result is distributed under the same license.**
*<font color="#827e9c">By Veronique Voisin, Ruth Isserlin, Gary Bader</font>*
## Goal of the exercise:
**Exercise 1 - Create an enrichment map and navigate through the network**
During this exercise, you will learn how to create an EnrichmentMap from gene-set enrichment results. The enrichment tool chosen for this exercise is GSEA but an enrichment map can be created from output from [GSEA](http://software.broadinstitute.org/gsea/index.jsp),
[g:Profiler](https://biit.cs.ut.ee/gprofiler/gost),
[GREAT](http://great.stanford.edu/public/html/),
[BinGo](http://apps.cytoscape.org/apps/bingo), [Enrichr](https://amp.pharm.mssm.edu/Enrichr/) or alternately from any gene-set tool using the generic enrichment results format.
**Exercise 2 - Post analysis (add drug target gene-sets to the network)**
As second part of the exercise, you will learn how to expand the network by adding an extra layer of information.
**Exercise 3 - Autoannotate**
A last optional exercise guides you toward the creation of automatically generated cluster labels to the network.
## Data
The data used in this exercise is gene expression data obtained from high throughput RNA sequencing.
They correspond to Ovarian serous cystadenocarcinoma samples. We use precomputed results of the GSEA analysis [Module 2 lab - gsea](#gsea-lab) to create an enrichment map with the aim to transform the tabular format in a network to better visualize the relationships between the significant gene-sets:
<img src="./Module3/gsea/images/workflow.png" alt="workflow" width="750" />
The output results of GSEA are 2 tables:
* One table (*pos*) contains all pathways with an enrichment score (significant or not) related to enrichment of the mesenchymal category (positive score).
* One table (*neg*) contains all pathways with an enrichment score (significant or not) related to enrichment of the immunoreactive category (negative score).
* These 2 tables are uploaded using the EnrichmentMap App which will create a network of mesenchymal and immunoreactive pathways that have a significant score (FDR <= 0.0001) for clearer visualization of the results.
### EnrichmentMap
* A <font color="red">red circle (node)</font> is a pathway specific of the mesenchymal type.
* A <font color="blue">blue circle (node)</font> is a pathway specific of the immunoreactive type.
* An edge represents genes in common between 2 pathways (nodes).
* A cluster of nodes represent overlapping and related pathways and may represent a common biological process.
* Clicking on a node will display the genes included in each pathway.
## Exercise 1 - GSEA output and EnrichmentMap
To start the lab practical section, first download the files.
```{block, type="rmd-datadownload"}
Right click on link below and select "Save Link As...".
Place it in the corresponding module directory of your CBW work directory.
```
7 Files are needed to create the enrichment map for this exercise (please download these files on your computer or alternately use the GSEA directory created in [module 2 lab - gsea](#gsea-lab) for files 1,2,3) :
1. GMT (file containing all pathways and corresponding genes) - [Human_GOBP_AllPathways_no_GO_iea_September_01_2020_symbol.gmt](./Module3/gsea/data/Human_GOBP_AllPathways_no_GO_iea_September_01_2020_symbol.gmt)
2. Enrichments 1 (GSEA results for the “pos” mesenchymal phenotype) - [gsea_report_for_na_pos_1620239732698.tsv](./Module3/gsea/data/gsea_report_for_na_pos_1620239732698.tsv)
3. Enrichments 2 (GSEA results for the “neg” immunoreactive phenotype) - [gsea_report_for_na_neg_1620239732698.tsv](./Module3/gsea/data/gsea_report_for_na_neg_1620239732698.tsv)
4. Expression (file containing the RNAseq data for all samples and all genes) - [MesenchymalvsImmunoreactive_rnaseq_expression.txt](./Module3/gsea/data/MesenchymalvsImmunoreactive_rnaseq_expression.txt)
5. Rank file (file that has been used as input to GSEA) - [MesenchymalvsImmunoreactive_edger_ranks.rnk](./Module3/gsea/data/MesenchymalvsImmunoreactive_edger_ranks.rnk)
6. Classes (define which samples are mesenchymal and which samples are immunoreactive) - [MesenchymalvsImmunoreactive_rnaseq_classes.cls](./Module3/gsea/data/MesenchymalvsImmunoreactive_rnaseq_classes.cls)
7. Drug target database (preselection of 4 drugs and their target genes in the post analysis exercise, <http://www.drugbank.ca/>) - [Human_DrugBank_approved_symbol_selected.gmt](./Module3/gsea/data/Human_DrugBank_approved_symbol_selected.gmt)
Follow the steps described below at your own pace:
### Step 1
Launch Cytoscape and open EnrichmentMap App
**1a**. Double click on the Cytoscape icon
**1b**. Open EnrichmentMap App
* In the top menu bar:
* Click on Apps -> EnrichmentMap
<img src="./Module3/gsea/images/EM1.png" />
A 'Create EnrichmentMap window is now opened.
### Step 2
Create an enrichment map
**2a**. In the 'Create EnrichmentMap' window, add a dataset of the GSEA type by clicking on the '+' plus sign.
<img src="./Module3/gsea/images/EMinput.png" width="750" />
**2b**. Specify the following parameters and upload the specified files:
* *Name*: leave default or a name of your choice like "GSEAmap"
* *Analysis Type*: GSEA
* *Enrichments Pos*: gsea_report_for_na_pos_1620239732698.tsv
* *Enrichments Ned*: gsea_report_for_na_neg_1620239732698.tsv
* *GMT* : Human_GOBP_AllPathways_no_GO_iea_September_01_2020_symbol.gmt
* *Ranks*: MesenchymalvsImmunoreactive_edger_ranks.rnk
* *Expressions* : MesenchymalvsImmunoreactive_rnaseq_expression.txt.
```{block, type="rmd-tip"}
this field is optional but recommended
```
* *Classes*: MesenchymalvsImmunoreactive_rnaseq_classes.cls
```{block, type="rmd-tip"}
this field is optional.
```
* *Phenotypes*: In the text boxes place *Mesenchymal* as the Positive phenotype *Immunoreactive* as the Negative phenotype. Mesenchymal will be associated with red nodes because it corresponds to the positive phenotype and Immunoreactive will be associated with the blue nodes because it corresponds to the negative phenotype.
* set FDR q-value cutoff to 0.0001 (= only gene-sets significantly enriched at a value of 0.0001 or less will be displayed on the map).
```{block, type="rmd-tip"}
it will be displayed as 1E-04 in the scientific notation.
```
**2c**. Click on *Build*
<img src="./Module3/gsea/images/EMinput2.png" alt="EM" width="750" />
```{block, type="rmd-caution"}
We populated the fields manually. If you work with your own data, a way to populate automatically the fields is to drag and drop your GSEA folder in the 'Data Set' window. You are encouraged to give it a try once you finished the lab with your own GSEA results.
```
**Unformatted results**:
```{block, type="rmd-note"}
layout will be different for each user (there is a random seed in the layout algorithm) but it does not change the results or interpretation (the connections are the same, only the display is different).
```
<img src="./Module3/gsea/images/EM3.png" alt="EM" width="750" />
### Step 3
Navigate the enrichment map to gain a better understanding of a EnrichmentMap network.
General layout of Cytoscape panel: In addition to the main window where the network is displayed, there are 2 panels: the Control Panel on the left side and the Table Panel at the bottom of the window.
Steps:
**3a**. In the Cytocape menu bar, select *View* and *Show Graphic details*. It will turn the squared nodes into circles and the gene-set labels will be visible.
<img src="./Module3/gsea/images/EM5.png" alt="EM" width="350" />
**3b**: Zoom in or out using + or - in toolbar or scroll button on mouse until you are able to read the labels comfortably.
<img src="./Module3/gsea/images/EM6.png" alt="EM" width="350" />
**3c**: Use the bird’s eye view (located at the bottom of the control panel) to navigate around the network by moving the blue rectangle using the mouse or trackpad.
<img src="./Module3/gsea/images/EM7.png" alt="EM" width="350" />
**3d**: Click on an individual node of interest.
For this example, you could use *Integrin signalling pathway*.
```{block, type="rmd-tip"}
If you are unable to locate *Integrin signalling pathway*, type "Integrin signalling pathway" in the search box (quotes are important). Selected nodes appear yellow (or highlighted) in the network.
```
**3e**. In the Table Panel in the *EM Heat map* tab change:
* Expressions: *Row Norm*
* Compress: *-None-*
<img src="./Module3/gsea/images/EM8.png" alt="EM" width="750" />
```{block, type="rmd-tip"}
Genes in the heatmap that are highlighted yellow (rank column) represent genes that are part of the leading edge for this gene set, i.e. contributed the most to the enriched phenotype.<br> Leading edge genes will only be highlighted if an individual node has been selected and the Enrichment Map was created from GSEA results.<br><br> *Troubleshooting*: if you don't see the sort column highlighted in yellow, reselect the node of interest and click on the GSEARanking Data Set 1 text in the EM Heatmap tab.
```
### Step 4
Use Filters to automatically select nodes on the map: Move the blue nodes to the left side of the window and the red nodes to the right side of the window.
**4a**. Locate the *Filter* tab on the side bar of the *Control Panel*.
**4b**. Click on the + sign to view the menu and select *Column Filter*.
**4c**. From the *Choose column …* box, select *Node: ES_dataset1* and set filter values from -0.953 and 0 inclusive.
**4d**. The blue nodes are now automatically selected. Zoom out to be able to look at the entire network and drag all blue nodes to the left side of the screen.
<img src="./Module3/gsea/images/EM9.png" alt="EM" width="750" />
**4e**. Optional. Change *is* to *is not* to select the red nodes.
<img src="./Module3/gsea/images/EM10.png" alt="EM" width="750" />
```{block, type="rmd-note"}
The red pathways (nodes) are specific to the mesenchymal phenotype. They were listed in the *pos* table of the GSEA results. The enrichment score (ES) values in this table are all positive values.<br> The blue pathways are specific to the immunoreactive phenotype and were listed in the *neg* table of the GSEA results. The ES values in this table are all negative values. <br><br>This is the information we used as the filtering criteria.
```
## Exercise 2 - Post analysis (add drug target gene-sets to the network)
### Step 5
Add drug target gene-sets to the network (Add Signature Gene-Sets...).
**5a**. In Control Panel, go to the EnrichmentMap tab and click on "Add Signature Gene Sets..." located below the white 'Data Sets:' box. A window named "EnrichmentMap: Add Signature Gene Sets (Post-Analysis) is now opened.
<img src="./Module3/gsea/images/drug1.png" alt="EM" width="250" />
**5b**. Using the 'Load from File...' button, select the *Human_DrugBank_approved_symbol_selected.gmt* file that you saved on your computer.
<img src="./Module3/gsea/images/drug2.png" alt="EM" width="75%" />
<img src="./Module3/gsea/images/drug3.png" alt="EM" width="75%" />
**5c**. Click on "Finish".
```{block, type="rmd-note"}
Four additional nodes are now added to the network and visible as grey diamonds. Dotted orange edges represent their overlap with the nodes of our network. These additional nodes represent gene targets of some approved drugs and these genes are either specific of the mesenchymal type (dotted orange edges connected to red nodes) or specific of the immunoreactive type (dotted orange edges connected to blue nodes).
```
<img src="./Module3/gsea/images/drug4.png" alt="EM" width="750" />
```{block, type="rmd-tip"}
more info using this link: https://enrichmentmap.readthedocs.io/en/latest/PostAnalysis.html
```
## Exercise 3 - Autoannotate the Network
### Step 6
Auto-annotate the network with cluster labels.
```{block, type="rmd-note"}
The Apps WordCloud, ClusterMaker and Autoannotate have to be installed. (they should have been installed during the pre-workshop set up)
```
```{block, type="rmd-note"}
if you ran step 5, <br>**delete the drug targets diamond nodes and associated edge before performing step 6**:<br> select the 4 nodes and associated dotted orange edges by browsing the mouse and click "delete" on your keyboard or in the Cytoscape menu, 'Edit', 'Delete Selected Nodes and Edges'.<br><br> **Alternately, in the Enrichment Map Input Panel in the Datasets box, un-select "Human_Drugbank_approved_symbol_selected" to hide the post analysis nodes.**
```
**6a**. In the menu bar, select *Apps*, *AutoAnnotate*, *New Annotation Set …*. An *Autoannotate: Create Annotation Set* window pops up. Leave default settings and click on *Create Annotations*.
<img src="./Module3/gsea/images/EM12.png" alt="EM" width="350" />
In the case that an *AutoAnnotate* window pops up with the message *AutoAnnotate will manage all groups in this network view*, click *OK*.
<img src="./Module3/gsea/images/EM13.png" alt="EM" width="350" />
<img src="./Module3/gsea/images/EM14.png" alt="EM" width="750" />
```{block, type="rmd-note"}
The network is now subdivided into clusters that are represented by ellipses. Each of these clusters are composed of pathways (nodes) interconnected by many common genes. These pathways represent similar biological processes. The app WordCloud take all the labels of the pathways in one cluster and summarize them as a unique cluster label displayed at the top of each ellipse.
```
```{block, type="rmd-tip"}
**Tip 1**: further editing and formatting can be performed on the AutoAnnote results using the *AutoAnnotate Display* in the *Results Panels* located at the right side of the window.<br> For example, it is possible to change Ellipse to Rectangle, uncheck *Scale font by cluster size* and increase the *Font Scale* using the scaling bar. It is also possible to reduce the length of the cluster label by checking the "Word Wrap" option.
**Tip 2**: The AutoAnnotate window on the left side in Result Panel contains the list of all clusters. Clicking on a cluster label will highlight in yellow all nodes in this cluster. It is then easy to move the nodes using the mouse to avoid cluster overlaps.
```
<img src="./Module3/gsea/images/AAStep6dnew.png" alt="workflow" width="750" />
**6b**. If your network is dense and clusters are overlapping, there is an option in AutoAnnotate that you can try that expands the network to prevent cluster overlap. In the menu bar, select *Apps*, *AutoAnnotate*, *New Annotation Set …*. An *Autoannotate: Create Annotation Set* window pops up. Check the *Layout network to prevent cluster overlap* and click on *Create Annotations*.
<img src="./Module3/gsea/images/AA6f.png" alt="workflow" width="500" />
<img src="./Module3/gsea/images/AA6g.png" alt="workflow" width="750" />
## Exercise 4 (Optional) - Explore results in GeneMANIA or STRING
Each node in the Enrichment map represents a biological process or pathway. It consists of a collection of genes. Often we want to know how the genes in that group interact. There are many different ways you can investigate the underlying interactions for the given group. Some involve searching online databases and others are directly integrated into cytoscape.
* [GeneMANIA](https://genemania.org/) - an integrative database of gene connections including co-expression, protein interactions, genetic interactions, pathways and more. **Cytoscape App**
* [String](https://string-db.org/) - - an integrative database of gene connections including co-expression, protein interactions, genetic interactions, pathways and more. **Cytoscape App**
* [Pathway Commons](https://www.pathwaycommons.org/) - a intergrative database of pathways. (There is a beta feature in EM to show your pathway in the painter app, a pathway common web page that overlays your expression data on the given pathway. Still in beta testing and requires expression data to work correctly so won't work for this example)
### Step 7
Visualize genes in a pathway/node of interest using the apps STRING and GeneMANIA. This will create a protein-protein interaction network using the genes included in the pathway. Note: We will go more in depth into [GeneMANIA in module 6](#genemania_cytoscape)
**7a**: Click on an individual node of interest.
For this example, you could use *BMP receptor signaling*.
```{block, type="rmd-tip"}
If you are unable to locate *BMP receptor signaling*, type "BMP receptor signaling" in the search box (quotes are important). The selected node appears yellow (or highlighted) in the network. If you have annotated your network, it should be included in the *BMP stimulus receptor * cluster.
```
**7b**: Right Click on the node of interest to diplay the option menu. Select *Apps*,--> *EnrichmentMap - Show in STRING*<br>
<img src="./Module3/gsea/images/Stringa.png" alt="workflow" width="500" />
* A *STRING Protein Query* box appears.
* select *Select genes with expression*.
* Click on *OK*.
<img src="./Module3/gsea/images/Stringb.png" alt="workflow" width="500" />
* The resulting network will look something like this.
<img src="./Module3/gsea/images/Stringc.png" alt="workflow" width="750" />
```{block, type="rmd-question"}
Explore the features and data of each Cytoscape app.<br>What happens to the network if you change the initial parameters like *Confidence cutoff* or *Max Additional interactors* <br><br>
<img src="./Module3/gsea/images/String_additional_parameters.png" alt="workflow" width="750" />
```
**7c**:Go back to enrichment map network.
* In Control Panel (left side of the window), select the "Network" tab and click on the Enrichment Map network as shown in below screenshot.
<img src="./Module3/gsea/images/find_network.png" alt="workflow" width="500" />
**7d**: Search again for the node labelled *BMP receptor signaling* as in Step 7a.
* Right Click on the node of interest to diplay the option menu. Select *Apps*,--> *EnrichmentMap - Show in STRING*<br>
<img src="./Module3/gsea/images/Stringa-genemania.png" alt="workflow" width="500" />
* A *GeneMANIA Query* box appears.
* select *Select genes with expression*.
* Click on *OK*.
<img src="./Module3/gsea/images/Genemaniab.png" alt="workflow" width="500" />
* A pop up will appear indicating that it is currenlty querying GeneMANIA
<img src="./Module3/gsea/images/genemaniaquery.png" alt="workflow" width="500" />
* The resulting network will look similiar to the below screenshot.
<img src="./Module3/gsea/images/Genemaniac.png" alt="workflow" width="750" />
```{block, type="rmd-tip"}
It is possible to view gene expression data for the nodes in the STRING network. See the section https://enrichmentmap.readthedocs.io/en/latest/Integration.html and try it out after the workshop.
```
```{block, type="rmd-caution"}
SAVE YOUR SESSION FILE!
```