Sharing information across iSEE panels
Kevin Rue-Albrecht
MRC WIMM Centre for Computational Biology, University of Oxford, Oxford, OX3 9DS, UKkevinrue67@gmail.com
Federico Marini
Institute of Medical Biostatistics, Epidemiology and Informatics (IMBEI), MainzCenter for Thrombosis and Hemostasis (CTH), Mainzmarinif@uni-mainz.de
Charlotte Soneson
Friedrich Miescher Institute for Biomedical Research, Basel, SwitzerlandSIB Swiss Institute of Bioinformaticscharlottesoneson@gmail.com
Aaron Lun
infinite.monkeys.with.keyboards@gmail.com7 October 2024
Source:vignettes/links.Rmd
links.Rmd
Compiled date: 2024-10-07
Last edited: 2020-04-20
License: MIT + file LICENSE
Introduction
One of iSEE’s main
features is the ability to share information between panels. This
facilitates deeper exploration of a dataset by allowing users to
visualize relationships across multiple metrics. iSEE()
currently supports three modes of information sharing between panels -
multiple selections, single selections and dynamic selections - which
are demonstrated in this vignette using the Allen dataset processed in
the previous
vignette.
Multiple selections
Basic use
As its name suggests, this involves selecting multiple features or samples in one panel and transmitting their identities to another panel to affect the visualization. To demonstrate, we will create a small app involving a single reduced dimension plot and a column metadata plot.
library(iSEE)
app <- iSEE(sce, initial=list(
ReducedDimensionPlot(),
ColumnDataPlot()
))
We indicate that we want one panel to “receive” a multiple selection from another panel. This is done by specifying the selection source (for samples/columns in this case, given the nature of the two panels) and indicating that the column data plot is to receive a selection from the reduced dimension plot.
We can click-and-drag to select multiple points in the reduced
dimension plot with a brush, which highlights those same points in the
column data plot. This enables users to easily explore relationships
between different visualizations in the iSEE()
interface.
Alternatively, a single click will lay down lasso waypoints for a non-rectangular selection. Once closed, the points in the lasso will be transmitted to the column data plot.
Selection effects
Transparency is the default aesthetic effect used to distinguish points in multiple selections in receiving plots. Alternatively, we may use color:
Another option is to restrict the receiving plot so that it only shows the points in the multiple selection. This effectively “gates” the dataset on the selection in the reduced dimension plot, analogous to identification populations of interest in flow cytometry studies. Indeed, this gating process can be repeated as many times as desired; a multiple selection could made on the column data plot and transmitted to another panel, and so on. (See this mass cytometry tour for an example.)
Of course, not all receiving panels need to be plots. If we transmit a multiple selection to a column data table, the effect is to subset the rows of the table corresponding to the selected points.
As an aside, it is equally possible for a table to transmit a multiple selection to other panels. This is achieved using the search fields to subset the dataset to the desired selection.
Saving selections
In certain panels (usually plots), multiple selections can be saved to form disjoint selections. Receiving plots will respond to the union of all active and saved selections:
The saved selection history operates on a first-in-last-out basis. Upon saving, a snapshot is taken of the current “active” selection, i.e., the brush or lasso that is just created. Deletion will only operate on the last saved selection.
Single selections
Another mode of information sharing involves transmitting a selection of a single feature or sample. This allows users to conveniently direct other panels to focus on a feature or sample of interest. For example, we can transmit a single selection from a row data table to a reduced dimension plot, instructing the latter to color points by the expression of the chosen feature.
The same approach can be used to control what is plotted on a feature
assay plot. Clicking on a different row of the table will directly
change the axes (in this case, the y-axis) of the plot, allowing the
user to synchronise different aspects of the iSEE()
interface to whatever is currently of interest.
We can also perform single selections on sample identities. In the example below, the reduced dimension plot highlights the location of the sample chosen in the column data table. This is useful for checking the behavior of specific samples of interest, e.g., during quality control.
Furthermore, it is possible to transmit single selections from a plot using brushes or lassos. If the brush/lasso contains multiple points, one of them is arbitrarily chosen for the purposes of obtaining a single selection. Below, we select a single highly variable gene to examine its distribution of expression values across the reduced dimension plot.
Dynamic selections
Most panels will have an option to dynamically change the choice of transmitting panel according to the last active selection in the app. This allows users to, for example, simply brush on any plot in the app and have all participating receiving panels immediately use that selection without requiring manual resetting of the transmitter. To illustrate, let’s set up an instance with three different plots that all represent points as samples.
Notice how we have checked the dynamic source selection option in the selection parameter box for all panels. This means that, upon making a selection in any one of the plots, all of the other plots will automatically respond as if they had been manually set to receive a transmission from that plot.
The same logic applies for some parameters that respond to single selections. This allows a panel to respond to an appropriate single selection from any other panel in the interface, without requiring the user to manually set the relationship between panels. In the example below, users can easily define the y-axis of the feature assay plot from a selected row in the row data table or from a selected single point in the row data plot.
Session Info
sessionInfo()
#> R version 4.4.1 (2024-06-14)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 22.04.5 LTS
#>
#> Matrix products: default
#> BLAS: /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3
#> LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.20.so; LAPACK version 3.10.0
#>
#> locale:
#> [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
#> [3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
#> [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
#>
#> time zone: UTC
#> tzcode source: system (glibc)
#>
#> attached base packages:
#> [1] stats4 stats graphics grDevices utils datasets methods
#> [8] base
#>
#> other attached packages:
#> [1] iSEE_2.17.4 SingleCellExperiment_1.27.2
#> [3] SummarizedExperiment_1.35.3 Biobase_2.65.1
#> [5] GenomicRanges_1.57.1 GenomeInfoDb_1.41.2
#> [7] IRanges_2.39.2 S4Vectors_0.43.2
#> [9] BiocGenerics_0.51.3 MatrixGenerics_1.17.0
#> [11] matrixStats_1.4.1 BiocStyle_2.33.1
#>
#> loaded via a namespace (and not attached):
#> [1] rlang_1.1.4 magrittr_2.0.3 shinydashboard_0.7.2
#> [4] clue_0.3-65 GetoptLong_1.0.5 compiler_4.4.1
#> [7] mgcv_1.9-1 png_0.1-8 systemfonts_1.1.0
#> [10] vctrs_0.6.5 pkgconfig_2.0.3 shape_1.4.6.1
#> [13] crayon_1.5.3 fastmap_1.2.0 XVector_0.45.0
#> [16] fontawesome_0.5.2 utf8_1.2.4 promises_1.3.0
#> [19] rmarkdown_2.28 UCSC.utils_1.1.0 shinyAce_0.4.2
#> [22] ragg_1.3.3 xfun_0.48 zlibbioc_1.51.1
#> [25] cachem_1.1.0 jsonlite_1.8.9 listviewer_4.0.0
#> [28] highr_0.11 later_1.3.2 DelayedArray_0.31.14
#> [31] parallel_4.4.1 cluster_2.1.6 R6_2.5.1
#> [34] bslib_0.8.0 RColorBrewer_1.1-3 jquerylib_0.1.4
#> [37] Rcpp_1.0.13 bookdown_0.40 iterators_1.0.14
#> [40] knitr_1.48 httpuv_1.6.15 Matrix_1.7-0
#> [43] splines_4.4.1 igraph_2.0.3 tidyselect_1.2.1
#> [46] abind_1.4-8 yaml_2.3.10 doParallel_1.0.17
#> [49] codetools_0.2-20 miniUI_0.1.1.1 lattice_0.22-6
#> [52] tibble_3.2.1 shiny_1.9.1 evaluate_1.0.0
#> [55] desc_1.4.3 circlize_0.4.16 pillar_1.9.0
#> [58] BiocManager_1.30.25 DT_0.33 foreach_1.5.2
#> [61] shinyjs_2.1.0 generics_0.1.3 ggplot2_3.5.1
#> [64] munsell_0.5.1 scales_1.3.0 xtable_1.8-4
#> [67] glue_1.8.0 tools_4.4.1 colourpicker_1.3.0
#> [70] fs_1.6.4 grid_4.4.1 colorspace_2.1-1
#> [73] nlme_3.1-166 GenomeInfoDbData_1.2.13 vipor_0.4.7
#> [76] cli_3.6.3 textshaping_0.4.0 fansi_1.0.6
#> [79] viridisLite_0.4.2 S4Arrays_1.5.10 ComplexHeatmap_2.21.1
#> [82] dplyr_1.1.4 gtable_0.3.5 rintrojs_0.3.4
#> [85] sass_0.4.9 digest_0.6.37 SparseArray_1.5.43
#> [88] ggrepel_0.9.6 rjson_0.2.23 htmlwidgets_1.6.4
#> [91] memoise_2.0.1 htmltools_0.5.8.1 pkgdown_2.1.1
#> [94] lifecycle_1.0.4 shinyWidgets_0.8.7 httr_1.4.7
#> [97] GlobalOptions_0.1.2 mime_0.12