forked from drieslab/giotto_workshop_2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
03_session3.Rmd
451 lines (354 loc) · 15.9 KB
/
03_session3.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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
# Multi-omics integration
Joselyn Cristina Chávez Fuentes
August 7th 2024
## The CytAssist technology
The Visium CytAssist Spatial Gene and Protein Expression assay is designed to introduce simultaneous Gene Expression and Protein Expression analysis to FFPE samples processed with Visium CytAssist. The assay uses NGS to measure the abundance of oligo-tagged antibodies with spatial resolution, in addition to the whole transcriptome and a morphological image.
```{r, echo=FALSE, out.width="80%", fig.align='center'}
knitr::include_graphics("img/03_session3/cytassist.png")
```
The 10X human immune cell profiling panel features 35 antibodies from Abcam and Biolegend, and includes cell surface and intracellular targets. The rna probes hybridize to ~18,000 genes, or RNA targets, within the tissue section to achieve whole transcriptome gene expression profiling. The remaining steps, starting with probe extension, follow the standard Visium workflow outside of the instrument.
```{r, echo=FALSE, out.width="100%", fig.align='center'}
knitr::include_graphics("img/03_session3/workflow.png")
```
## Introduction to the spatial dataset
The [Human Tonsil (FFPE) dataset](https://www.10xgenomics.com/datasets/gene-protein-expression-library-of-human-tonsil-cytassist-ffpe-2-standard) was obtained from 10X Genomics. The tissue was sectioned as described in Visium CytAssist Spatial Gene and Protein Expression for FFPE – Tissue Preparation Guide (CG000660). 5 µm tissue sections were placed on Superfrost glass slides, deparaffinized, H&E stained (CG000658) and coverslipped. Sections were imaged, decoverslipped, followed by decrosslinking per the Staining Demonstrated Protocol (CG000658).
More information about this dataset can be found [here](https://www.10xgenomics.com/datasets/gene-protein-expression-library-of-human-tonsil-cytassist-ffpe-2-standard).
## Download dataset
You need to download the expression matrix and spatial information by running these commands:
```{r, eval=FALSE}
dir.create("data")
download.file(url = "https://cf.10xgenomics.com/samples/spatial-exp/2.1.0/CytAssist_FFPE_Protein_Expression_Human_Tonsil/CytAssist_FFPE_Protein_Expression_Human_Tonsil_raw_feature_bc_matrix.tar.gz",
destfile = "data/CytAssist_FFPE_Protein_Expression_Human_Tonsil_raw_feature_bc_matrix.tar.gz")
download.file(url = "https://cf.10xgenomics.com/samples/spatial-exp/2.1.0/CytAssist_FFPE_Protein_Expression_Human_Tonsil/CytAssist_FFPE_Protein_Expression_Human_Tonsil_spatial.tar.gz",
destfile = "data/CytAssist_FFPE_Protein_Expression_Human_Tonsil_spatial.tar.gz")
```
After downloading, unzip the gz files. You should get the "raw_feature_bc_matrix" and "spatial" folders inside "data/".
## Create the Giotto object
The minimum requirements are:
- matrix with expression information (or the path to)
- x,y(,z) coordinates for cells or spots (or the path to)
createGiottoVisiumObject() will automatically detect both RNA and Protein modalities in the expression matrix and will create a multi-omics Giotto object.
```{r, eval=FALSE}
library(Giotto)
## Set instructions
results_folder <- "results/"
python_path <- NULL
instructions <- createGiottoInstructions(
save_dir = results_folder,
save_plot = TRUE,
show_plot = FALSE,
return_plot = FALSE,
python_path = python_path
)
# Provide the path to the data folder
data_path <- "data"
# Create object directly from the data folder
visium_tonsil <- createGiottoVisiumObject(
visium_dir = data_path,
expr_data = "raw",
png_name = "tissue_lowres_image.png",
gene_column_index = 2,
instructions = instructions
)
```
- Print the information of the object, note that both rna and protein are listed in the expression slot
```{r, eval=FALSE}
visium_tonsil
```
## Subset on spots that were covered by tissue
```{r, eval=FALSE}
spatPlot2D(
gobject = visium_tonsil,
cell_color = "in_tissue",
point_size = 2,
cell_color_code = c("0" = "lightgrey", "1" = "blue"),
show_image = TRUE,
image_name = "image"
)
```
```{r, echo=FALSE, out.width="80%", fig.align="center"}
knitr::include_graphics("img/03_session3/0-spatPlot2D.png")
```
```{r, eval=FALSE}
metadata <- getCellMetadata(gobject = visium_tonsil,
output = "data.table")
in_tissue_barcodes <- metadata[in_tissue == 1]$cell_ID
visium_tonsil <- subsetGiotto(visium_tonsil,
cell_ids = in_tissue_barcodes)
```
## RNA processing
- Filtering, normalization, and statistics
```{r, eval=FALSE}
visium_tonsil <- filterGiotto(
gobject = visium_tonsil,
expression_threshold = 1,
feat_det_in_min_cells = 50,
min_det_feats_per_cell = 1000,
expression_values = "raw",
verbose = TRUE)
visium_tonsil <- normalizeGiotto(gobject = visium_tonsil,
scalefactor = 6000,
verbose = TRUE)
visium_tonsil <- addStatistics(gobject = visium_tonsil)
```
- Dimension reduction
```{r, eval=FALSE}
visium_tonsil <- calculateHVF(gobject = visium_tonsil)
visium_tonsil <- runPCA(gobject = visium_tonsil)
```
- Clustering
```{r, eval=FALSE}
visium_tonsil <- runUMAP(visium_tonsil,
dimensions_to_use = 1:10)
visium_tonsil <- runtSNE(visium_tonsil,
dimensions_to_use = 1:10)
visium_tonsil <- createNearestNetwork(gobject = visium_tonsil,
dimensions_to_use = 1:10,
k = 30)
visium_tonsil <- doLeidenCluster(gobject = visium_tonsil,
resolution = 1,
n_iterations = 1000)
```
- Visualization
```{r, eval=FALSE}
plotUMAP(gobject = visium_tonsil,
cell_color = "leiden_clus",
show_NN_network = TRUE,
point_size = 2)
```
```{r, echo=FALSE, out.width="80%", fig.align="center"}
knitr::include_graphics("img/03_session3/1-UMAP.png")
```
```{r, eval=FALSE}
spatPlot2D(gobject = visium_tonsil,
show_image = TRUE,
cell_color = "leiden_clus",
point_size = 3)
```
```{r, echo=FALSE, out.width="80%", fig.align="center"}
knitr::include_graphics("img/03_session3/2-spatPlot2D.png")
```
## Protein processing
- Filtering, normalization, and statistics
```{r, eval=FALSE}
visium_tonsil <- filterGiotto(gobject = visium_tonsil,
spat_unit = "cell",
feat_type = "protein",
expression_threshold = 1,
feat_det_in_min_cells = 50,
min_det_feats_per_cell = 1,
expression_values = "raw",
verbose = TRUE)
visium_tonsil <- normalizeGiotto(gobject = visium_tonsil,
spat_unit = "cell",
feat_type = "protein",
scalefactor = 6000,
verbose = TRUE)
visium_tonsil <- addStatistics(gobject = visium_tonsil,
spat_unit = "cell",
feat_type = "protein")
```
- Dimension reduction
```{r, eval=FALSE}
visium_tonsil <- runPCA(gobject = visium_tonsil,
spat_unit = "cell",
feat_type = "protein")
```
- Clustering
```{r, eval=FALSE}
visium_tonsil <- runUMAP(visium_tonsil,
spat_unit = "cell",
feat_type = "protein",
dimensions_to_use = 1:10)
visium_tonsil <- runtSNE(visium_tonsil,
spat_unit = 'cell',
feat_type = 'protein',
dimensions_to_use = 1:10)
visium_tonsil <- createNearestNetwork(gobject = visium_tonsil,
spat_unit = "cell",
feat_type = "protein",
dimensions_to_use = 1:10,
k = 30)
visium_tonsil <- doLeidenCluster(gobject = visium_tonsil,
spat_unit = "cell",
feat_type = "protein",
resolution = 1,
n_iterations = 1000)
```
- Visualization
```{r, eval=FALSE}
plotUMAP(gobject = visium_tonsil,
spat_unit = "cell",
feat_type = "protein",
cell_color = "leiden_clus",
show_NN_network = TRUE,
point_size = 2)
```
```{r, echo=FALSE, out.width="80%", fig.align="center"}
knitr::include_graphics("img/03_session3/3-UMAP.png")
```
```{r, eval=FALSE}
spatPlot2D(gobject = visium_tonsil,
spat_unit = "cell",
feat_type = "protein",
show_image = TRUE,
cell_color = "leiden_clus",
point_size = 3)
```
```{r, echo=FALSE, out.width="80%", fig.align="center"}
knitr::include_graphics("img/03_session3/4-spatPlot2D.png")
```
## Multi-omics integration
- Calculate kNN
```{r, eval=FALSE}
## RNA modality
visium_tonsil <- createNearestNetwork(gobject = visium_tonsil,
type = "kNN",
dimensions_to_use = 1:10,
k = 20)
## Protein modality
visium_tonsil <- createNearestNetwork(gobject = visium_tonsil,
spat_unit = "cell",
feat_type = "protein",
type = "kNN",
dimensions_to_use = 1:10,
k = 20)
```
- Run WNN
```{r, eval=FALSE}
visium_tonsil <- runWNN(visium_tonsil,
spat_unit = "cell",
modality_1 = "rna",
modality_2 = "protein",
pca_name_modality_1 = "pca",
pca_name_modality_2 = "protein.pca",
k = 20,
integrated_feat_type = NULL,
matrix_result_name = NULL,
w_name_modality_1 = NULL,
w_name_modality_2 = NULL,
verbose = TRUE)
```
- Run Integrated umap
```{r, eval=FALSE}
visium_tonsil <- runIntegratedUMAP(visium_tonsil,
modality1 = "rna",
modality2 = "protein",
spread = 7,
min_dist = 1,
force = FALSE)
```
- Calculate integrated clusters
```{r, eval=FALSE}
visium_tonsil <- doLeidenCluster(gobject = visium_tonsil,
spat_unit = "cell",
feat_type = "rna",
nn_network_to_use = "kNN",
network_name = "integrated_kNN",
name = "integrated_leiden_clus",
resolution = 1)
```
- Visualize the integrated umap
```{r, eval=FALSE}
plotUMAP(gobject = visium_tonsil,
spat_unit = "cell",
feat_type = "rna",
cell_color = "integrated_leiden_clus",
dim_reduction_name = "integrated.umap",
point_size = 2,
title = "Integrated UMAP using Integrated Leiden clusters")
```
```{r, echo=FALSE, out.width="80%", fig.align="center"}
knitr::include_graphics("img/03_session3/5-UMAP.png")
```
- Visualize spatial plot with integrated clusters
```{r, eval=FALSE}
spatPlot2D(visium_tonsil,
spat_unit = "cell",
feat_type = "rna",
cell_color = "integrated_leiden_clus",
point_size = 3,
show_image = TRUE,
title = "Integrated Leiden clustering")
```
```{r, echo=FALSE, out.width="80%", fig.align="center"}
knitr::include_graphics("img/03_session3/6-spatPlot2D.png")
```
## Session info
```{r, eval=FALSE}
sessionInfo()
```
```{r, eval=FALSE}
R version 4.4.1 (2024-06-14)
Platform: aarch64-apple-darwin20
Running under: macOS Sonoma 14.5
Matrix products: default
BLAS: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/4.4-arm64/Resources/lib/libRlapack.dylib; LAPACK version 3.12.0
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
time zone: America/New_York
tzcode source: internal
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] Giotto_4.1.0 GiottoClass_0.3.3
loaded via a namespace (and not attached):
[1] colorRamp2_0.1.0 deldir_2.0-4
[3] rlang_1.1.4 magrittr_2.0.3
[5] RcppAnnoy_0.0.22 GiottoUtils_0.1.10
[7] matrixStats_1.3.0 compiler_4.4.1
[9] png_0.1-8 systemfonts_1.1.0
[11] vctrs_0.6.5 reshape2_1.4.4
[13] stringr_1.5.1 pkgconfig_2.0.3
[15] SpatialExperiment_1.14.0 crayon_1.5.3
[17] fastmap_1.2.0 backports_1.5.0
[19] magick_2.8.4 XVector_0.44.0
[21] labeling_0.4.3 utf8_1.2.4
[23] rmarkdown_2.27 UCSC.utils_1.0.0
[25] ragg_1.3.2 purrr_1.0.2
[27] xfun_0.46 beachmat_2.20.0
[29] zlibbioc_1.50.0 GenomeInfoDb_1.40.1
[31] jsonlite_1.8.8 DelayedArray_0.30.1
[33] BiocParallel_1.38.0 terra_1.7-78
[35] irlba_2.3.5.1 parallel_4.4.1
[37] R6_2.5.1 stringi_1.8.4
[39] RColorBrewer_1.1-3 reticulate_1.38.0
[41] parallelly_1.37.1 GenomicRanges_1.56.1
[43] scattermore_1.2 Rcpp_1.0.13
[45] bookdown_0.40 SummarizedExperiment_1.34.0
[47] knitr_1.48 future.apply_1.11.2
[49] R.utils_2.12.3 IRanges_2.38.1
[51] Matrix_1.7-0 igraph_2.0.3
[53] tidyselect_1.2.1 rstudioapi_0.16.0
[55] abind_1.4-5 yaml_2.3.9
[57] codetools_0.2-20 listenv_0.9.1
[59] lattice_0.22-6 tibble_3.2.1
[61] plyr_1.8.9 Biobase_2.64.0
[63] withr_3.0.0 Rtsne_0.17
[65] evaluate_0.24.0 future_1.33.2
[67] pillar_1.9.0 MatrixGenerics_1.16.0
[69] checkmate_2.3.1 stats4_4.4.1
[71] plotly_4.10.4 generics_0.1.3
[73] dbscan_1.2-0 sp_2.1-4
[75] S4Vectors_0.42.1 ggplot2_3.5.1
[77] munsell_0.5.1 scales_1.3.0
[79] globals_0.16.3 gtools_3.9.5
[81] glue_1.7.0 lazyeval_0.2.2
[83] tools_4.4.1 GiottoVisuals_0.2.4
[85] data.table_1.15.4 ScaledMatrix_1.12.0
[87] cowplot_1.1.3 grid_4.4.1
[89] tidyr_1.3.1 colorspace_2.1-0
[91] SingleCellExperiment_1.26.0 GenomeInfoDbData_1.2.12
[93] BiocSingular_1.20.0 rsvd_1.0.5
[95] cli_3.6.3 textshaping_0.4.0
[97] fansi_1.0.6 S4Arrays_1.4.1
[99] viridisLite_0.4.2 dplyr_1.1.4
[101] uwot_0.2.2 gtable_0.3.5
[103] R.methodsS3_1.8.2 digest_0.6.36
[105] BiocGenerics_0.50.0 SparseArray_1.4.8
[107] ggrepel_0.9.5 farver_2.1.2
[109] rjson_0.2.21 htmlwidgets_1.6.4
[111] htmltools_0.5.8.1 R.oo_1.26.0
[113] lifecycle_1.0.4 httr_1.4.7
```