QFeatures 1.8.0
To demonstrate the data visualization of QFeatures
, we first perform
a quick processing of the hlpsms
example data. We load the data and
read it as a QFeautres
object. See the processing
vignette
for more details about data processing with QFeatures
.
library("QFeatures")
data(hlpsms)
hl <- readQFeatures(hlpsms, ecol = 1:10, name = "psms")
We then aggregate the psms to peptides, and the peptodes to proteins.
hl <- aggregateFeatures(hl, "psms", "Sequence", name = "peptides", fun = colMeans)
## Your row data contain missing values. Please read the relevant
## section(s) in the aggregateFeatures manual page regarding the effects
## of missing values on data aggregation.
hl <- aggregateFeatures(hl, "peptides", "ProteinGroupAccessions", name = "proteins", fun = colMeans)
We also add the TMT tags that were used to multiplex the samples. The
data is added to the colData
of the QFeatures
object and will
allow us to demonstrate how to plot data from the colData
.
hl$tag <- c("126", "127N", "127C", "128N", "128C", "129N", "129C",
"130N", "130C", "131")
The dataset is now ready for data exploration.
QFeatures
hierarchyQFeatures
objects can contain several assays as the data goes through
the processing workflow. The plot
function provides an overview of
all the assays present in the dataset, showing also the hierarchical
relationships between the assays as determined by the AssayLinks
.
plot(hl)
This plot is rather simple with only three assays, but some processing
workflows may involve more steps. The feat3
example data illustrates
the different possible relationships: one parent to one child, multiple
parents to one child and one parent to multiple children.
data("feat3")
plot(feat3)
Note that some datasets may contain many assays, for instance because
the MS experiment consists of hundreds of batches. This can lead to an
overcrowded plot. Therefore, you can also explore this hierarchy of
assays through an interactive plot, supported by the plotly
package
(Sievert (2020)). You can use the viewer panel to zoom in and out and
navigate across the tree(s).
plot(hl, interactive = TRUE)
The quantitative data is retrieved using assay()
, the feature
metadata is retrieved using rowData()
on the assay of interest, and
the sample metadata is retrieved using colData()
. Once retrieved,
the data can be supplied to the base R data exploration tools. Here
are some examples:
proteins
assay.plot(assay(hl, "proteins")[1, ])
.n
from the
protein rowData
.hist(rowData(hl)[["proteins"]]$.n)
tag
from the
colData
.table(hl$tag)
##
## 126 127C 127N 128C 128N 129C 129N 130C 130N 131
## 1 1 1 1 1 1 1 1 1 1
ggplot2
ggplot2
is a powerful tool for data visualization in R
and is part
of the tidyverse
package ecosystem (Wickham et al. (2019)). It produces
elegant and publication-ready plots in a few lines of code. ggplot2
can be used to explore QFeatures
object, similarly to the base
functions shown above. Note that ggplot2
expects data.frame
or
tibble
objects whereas the quantitative data in QFeatures
are
encoded as matrix
(or matrix-like objects, see
?SummarizedExperiment
) and the rowData
and colData
are encoded
as DataFrame
. This is easily circumvented by converting those
objects to data.frame
s or tibble
s. See here how we reproduce the
plot above using ggplot2
.
library("ggplot2")
df <- data.frame(rowData(hl)[["proteins"]])
ggplot(df) +
aes(x = .n) +
geom_histogram()
We refer the reader to the ggplot2
package website for more information
about the wide variety of functions that the package offers and for
tutorials and cheatsheets.
Another useful package for quantitative data exploration is
ComplexHeatmap
(Gu, Eils, and Schlesner (2016)). It is part of the Bioconductor project
(Gentleman et al. (2004)) and facilitates visualization of matrix objects as
heatmap. See here an example where we plot the protein data.
library(ComplexHeatmap)
Heatmap(matrix = assay(hl, "proteins"),
show_row_names = FALSE)
ComplexHeatmap
also allows to add row and/or column annotations.
Let’s add the predicted protein location as row annotation.
ha <- rowAnnotation(markers = rowData(hl)[["proteins"]]$markers)
Heatmap(matrix = assay(hl, "proteins"),
show_row_names = FALSE,
left_annotation = ha)
More advanced usage of ComplexHeatmap
is described in the package
reference book.
In this section, we show how to combine in a single table
different pieces of information available in a QFeatures
object,
that are quantitation data, feature metadata and sample metadata. The
QFeatures
package provides the longFormat
function that converts a
QFeatures
object into a long table. Long tables are very useful when
using ggplot2
for data visualization. For instance, suppose we want
to visualize the distribution of protein quantitation (present in the
proteins
assay) with respect to the different acquisition tags
(present in the colData
) for each predicted cell location separately
(present in the rowData
of the assays). Furthermore, we link the
quantitation values coming from the same protein using lines. This can
all be plotted at once in a few lines of code.
lf <- longFormat(hl[, , "proteins"],
rowvars = "markers",
colvars = "tag")
## Warning: 'experiments' dropped; see 'metadata'
## harmonizing input:
## removing 20 sampleMap rows not in names(experiments)
ggplot(data.frame(lf)) +
aes(x = tag,
y = value,
group = rowname) +
geom_line() +
facet_wrap(~ markers, scales = "free_y", ncol = 3)
longFormat
allows to retrieve and combine all available data from a
Qfeatures
object. We here demonstrate the ease to combine different
pieces that could highlight sample specific and/or feature specific
effects on data quantitation.
Finally, a simply shiny
app allows to explore and visualise the
respective assays of a QFeatures
object.
display(hl)
A dropdown menu in the side bar allows the user to select an assay of interest, which can then be visualised as a heatmap (figure 1), as a quantitative table (figure 2) or a row data table (figure 3).
## R version 4.2.1 (2022-06-23)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 20.04.5 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.16-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.16-bioc/R/lib/libRlapack.so
##
## locale:
## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
## [3] LC_TIME=en_GB LC_COLLATE=C
## [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
## [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
## [9] LC_ADDRESS=C LC_TELEPHONE=C
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
##
## attached base packages:
## [1] grid stats4 stats graphics grDevices utils datasets
## [8] methods base
##
## other attached packages:
## [1] ComplexHeatmap_2.14.0 gplots_3.1.3
## [3] magrittr_2.0.3 dplyr_1.0.10
## [5] ggplot2_3.3.6 QFeatures_1.8.0
## [7] MultiAssayExperiment_1.24.0 SummarizedExperiment_1.28.0
## [9] Biobase_2.58.0 GenomicRanges_1.50.0
## [11] GenomeInfoDb_1.34.0 IRanges_2.32.0
## [13] S4Vectors_0.36.0 BiocGenerics_0.44.0
## [15] MatrixGenerics_1.10.0 matrixStats_0.62.0
## [17] BiocStyle_2.26.0
##
## loaded via a namespace (and not attached):
## [1] ProtGenerics_1.30.0 bitops_1.0-7 RColorBrewer_1.1-3
## [4] doParallel_1.0.17 tools_4.2.1 bslib_0.4.0
## [7] utf8_1.2.2 R6_2.5.1 KernSmooth_2.23-20
## [10] DBI_1.1.3 lazyeval_0.2.2 colorspace_2.0-3
## [13] GetoptLong_1.0.5 withr_2.5.0 tidyselect_1.2.0
## [16] compiler_4.2.1 cli_3.4.1 Cairo_1.6-0
## [19] DelayedArray_0.24.0 labeling_0.4.2 bookdown_0.29
## [22] sass_0.4.2 caTools_1.18.2 scales_1.2.1
## [25] stringr_1.4.1 digest_0.6.30 rmarkdown_2.17
## [28] XVector_0.38.0 pkgconfig_2.0.3 htmltools_0.5.3
## [31] fastmap_1.1.0 limma_3.54.0 highr_0.9
## [34] GlobalOptions_0.1.2 rlang_1.0.6 shape_1.4.6
## [37] jquerylib_0.1.4 farver_2.1.1 generics_0.1.3
## [40] jsonlite_1.8.3 gtools_3.9.3 RCurl_1.98-1.9
## [43] GenomeInfoDbData_1.2.9 Matrix_1.5-1 Rcpp_1.0.9
## [46] munsell_0.5.0 fansi_1.0.3 MsCoreUtils_1.10.0
## [49] lifecycle_1.0.3 stringi_1.7.8 yaml_2.3.6
## [52] MASS_7.3-58.1 zlibbioc_1.44.0 parallel_4.2.1
## [55] crayon_1.5.2 lattice_0.20-45 circlize_0.4.15
## [58] magick_2.7.3 knitr_1.40 pillar_1.8.1
## [61] igraph_1.3.5 rjson_0.2.21 codetools_0.2-18
## [64] glue_1.6.2 evaluate_0.17 BiocManager_1.30.19
## [67] vctrs_0.5.0 png_0.1-7 foreach_1.5.2
## [70] gtable_0.3.1 clue_0.3-62 assertthat_0.2.1
## [73] cachem_1.0.6 xfun_0.34 BiocBaseUtils_1.0.0
## [76] AnnotationFilter_1.22.0 msdata_0.37.0 tibble_3.1.8
## [79] iterators_1.0.14 cluster_2.1.4
Gentleman, Robert C., Vincent J. Carey, Douglas M. Bates, Ben Bolstad, Marcel Dettling, Sandrine Dudoit, Byron Ellis, et al. 2004. “Bioconductor: Open Software Development for Computational Biology and Bioinformatics.” Genome Biol 5 (10): –80. https://doi.org/10.1186/gb-2004-5-10-r80.
Gu, Zuguang, Roland Eils, and Matthias Schlesner. 2016. “Complex Heatmaps Reveal Patterns and Correlations in Multidimensional Genomic Data.” Bioinformatics 32 (18): 2847–9.
Sievert, Carson. 2020. Interactive Web-Based Data Visualization with R, Plotly, and Shiny. Chapman; Hall/CRC. https://plotly-r.com.
Wickham, Hadley, Mara Averick, Jennifer Bryan, Winston Chang, Lucy McGowan, Romain François, Garrett Grolemund, et al. 2019. “Welcome to the Tidyverse.” J. Open Source Softw. 4 (43): 1686.