1 Introduction

iSEEhub is an extension to the iSEE Bioconductor package that provides a link between iSEE and the Bioconductor ExperimentHub.

Specifically, iSEEhub adds a custom landing page to iSEE web applications that can be used to browse the Bioconductor ExperimentHub interactively, and loads a selected data set in the standard iSEE user interface.

2 Basics

2.1 Install iSEEhub

R is an open-source statistical environment which can be easily modified to enhance its functionality via packages. iSEEhub is a R package available via the Bioconductor repository for packages. R can be installed on any operating system from CRAN after which you can install iSEEhub by using the following commands in your R session:

if (!requireNamespace("BiocManager", quietly = TRUE)) {
      install.packages("BiocManager")
  }

BiocManager::install("iSEEhub")

## Check that you have a valid Bioconductor installation
BiocManager::valid()

2.2 Required knowledge

iSEEhub is based on many other packages that have implemented the infrastructure needed for dealing with omics data and interactive visualisation. That is, packages like SummarizedExperiment, SingleCellExperiment, iSEE and shiny.

If you are asking yourself the question “Where do I start using Bioconductor?” you might be interested in this blog post.

2.3 Asking for help

As package developers, we try to explain clearly how to use our packages and in which order to use the functions. But R and Bioconductor have a steep learning curve so it is critical to learn where to ask for help. The blog post quoted above mentions some but we would like to highlight the Bioconductor support site as the main resource for getting help: remember to use the iSEEhub tag and check the older posts. Other alternatives are available such as creating GitHub issues and tweeting. However, please note that if you want to receive help you should adhere to the posting guidelines. It is particularly critical that you provide a small reproducible example and your session information so package developers can track down the source of the error.

2.4 Citing iSEEhub

We hope that iSEEhub will be useful for your research. Please use the following information to cite the package and the overall approach. Thank you!

## Citation info
citation("iSEEhub")
#> To cite package 'iSEEhub' in publications use:
#> 
#>   Rue-Albrecht K (2023). _iSEEhub: iSEE for the Bioconductor ExperimentHub_. doi:10.18129/B9.bioc.iSEEhub
#>   <https://doi.org/10.18129/B9.bioc.iSEEhub>, R package version 1.4.0,
#>   <https://bioconductor.org/packages/iSEEhub>.
#> 
#> A BibTeX entry for LaTeX users is
#> 
#>   @Manual{,
#>     title = {iSEEhub: iSEE for the Bioconductor ExperimentHub},
#>     author = {Kevin Rue-Albrecht},
#>     year = {2023},
#>     note = {R package version 1.4.0},
#>     url = {https://bioconductor.org/packages/iSEEhub},
#>     doi = {10.18129/B9.bioc.iSEEhub},
#>   }

Here is an example of you can cite your package inside the vignette:

3 Quick start to using to iSEEhub

The main functionality of the package is available through the function iSEEhub().

The function returns a shiny app that can then be launched using the function shiny::runApp().

library(iSEEhub)
library(ExperimentHub)
ehub <- ExperimentHub()

app <- iSEEhub(ehub)

if (interactive()) {
  shiny::runApp(app, port = 1234)
}

4 The ExperimentHub pane

Datasets available in the Bioconductor ExperimentHub are listed – along with metadata – in the interactive table on the left.

The table may be filtered and sorted using any metadata column, to efficiently browse the datasets available.

By default, only a subset of metadata columns are displayed. The selectize input labelled Show columns: at the top of the pane may be used to add, remove, or reorder columns in the table.

No more than one dataset may be selected at any time.

5 The Selected Dataset pane

5.1 Overview

The pane on the right updates with the currently selected dataset.

This pane contains information and inputs required to load the currently selected dataset in the main iSEE app.

The pane is composed of two tabs described in the following sections.

5.2 The Info tab

The Info tab displays the full metadata associated with the currently selected dataset – the same metadata as in the ExperimentHub table – in formatted text.

As such, users can uses a minimal subset of columns in the table to efficiently browse available datasets, while having a full overview of the currently selected dataset in this tab.

5.3 The Config tab

The Config tab displays a selectize input offering users a choice of initial app configurations that are specific to the currently selected dataset.

For all datasets, an option Default is available. That option does not provide any specific instruction with respect to the initial set of panels, their layout, nor their respective initial settings. Instead, the Default option prompts the app to automatically identify all the built-in iSEE panel classes that are compatible with the loaded dataset, initialising an app that contains one instance of each of those panels.

The number of panels and data points to draw for large datasets makes the Default option a showcase mode for demonstration and for new users, more than one optimised for a short loading time or featuring specific aspects of the dataset.

For some datasets, additional choices of initial settings are available. Configurations are provided as scripts that define the list of panels and their respective initial configuration when the main iSEE app is launched.

To contribute new scripts, please refer to the vignette Contributing to iSEEhub.

For demonstration, a simple example config_1.R is included for the dataset EH1. When selected, the contents of the configuration file are shown in the pane – including any comment from the authors – allowing users to review the script before using it.

When the appropriate configuration is selected, users may click the Launch! button to load the dataset into the main iSEE app.

6 The main iSEE app

Once the dataset is successfully loaded into the R session, the app will switch to the main iSEE view.

7 Managing dataset dependencies

7.1 Overview

Each dataset in the Bioconductor ExperimentHub is associated with package dependencies that are required to handle the dataset in an R session. Package dependencies must be installed in the R library before the corresponding dataset can be loaded.

The list of packages associated with all datasets types supported by iSEEhub is regularly updated in the Suggests: field of the DESCRIPTION file. However, those packages are not automatically installed in a minimal installation of the iSEEhub package.

7.2 From the R console

By default, iSEEhub(..., runtime_install = FALSE) prevents the app from installing those dependencies at runtime. In that case, when users identify a missing dependency, they must interrupt the app, install the required package(s) using the R console, and re-launch the app. We recommend this approach for applications hosted on public web-servers.

7.3 From the live app

Alternatively, iSEEhub(..., runtime_install = TRUE) can be used to launch an app that prompts users interactively (i.e., within the app) for their consent to install missing dependencies. We recommend this approach for applications run on personal computers (unless users prefer to install packages themselves, of course).

8 Reproducibility

The iSEEhub package (Rue-Albrecht, 2023) was made possible thanks to:

This package was developed using biocthis.

Code for creating the vignette

## Create the vignette
library("rmarkdown")
system.time(render("iSEEhub.Rmd", "BiocStyle::html_document"))

## Extract the R code
library("knitr")
knit("iSEEhub.Rmd", tangle = TRUE)

Date the vignette was generated.

#> [1] "2023-10-24 17:40:52 EDT"

Wallclock time spent generating the vignette.

#> Time difference of 13.05 secs

R session information.

#> ─ Session info ───────────────────────────────────────────────────────────────────────────────────────────────────────
#>  setting  value
#>  version  R version 4.3.1 (2023-06-16)
#>  os       Ubuntu 22.04.3 LTS
#>  system   x86_64, linux-gnu
#>  ui       X11
#>  language (EN)
#>  collate  C
#>  ctype    en_US.UTF-8
#>  tz       America/New_York
#>  date     2023-10-24
#>  pandoc   2.7.3 @ /usr/bin/ (via rmarkdown)
#> 
#> ─ Packages ───────────────────────────────────────────────────────────────────────────────────────────────────────────
#>  package                * version   date (UTC) lib source
#>  abind                    1.4-5     2016-07-21 [2] CRAN (R 4.3.1)
#>  AnnotationDbi            1.64.0    2023-10-24 [2] Bioconductor
#>  AnnotationHub          * 3.10.0    2023-10-24 [2] Bioconductor
#>  backports                1.4.1     2021-12-13 [2] CRAN (R 4.3.1)
#>  bibtex                   0.5.1     2023-01-26 [2] CRAN (R 4.3.1)
#>  Biobase                * 2.62.0    2023-10-24 [2] Bioconductor
#>  BiocFileCache          * 2.10.0    2023-10-24 [2] Bioconductor
#>  BiocGenerics           * 0.48.0    2023-10-24 [2] Bioconductor
#>  BiocManager              1.30.22   2023-08-08 [2] CRAN (R 4.3.1)
#>  BiocStyle              * 2.30.0    2023-10-24 [2] Bioconductor
#>  BiocVersion              3.18.0    2023-10-24 [2] Bioconductor
#>  Biostrings               2.70.0    2023-10-24 [2] Bioconductor
#>  bit                      4.0.5     2022-11-15 [2] CRAN (R 4.3.1)
#>  bit64                    4.0.5     2020-08-30 [2] CRAN (R 4.3.1)
#>  bitops                   1.0-7     2021-04-24 [2] CRAN (R 4.3.1)
#>  blob                     1.2.4     2023-03-17 [2] CRAN (R 4.3.1)
#>  bookdown                 0.36      2023-10-16 [2] CRAN (R 4.3.1)
#>  bslib                    0.5.1     2023-08-11 [2] CRAN (R 4.3.1)
#>  cachem                   1.0.8     2023-05-01 [2] CRAN (R 4.3.1)
#>  circlize                 0.4.15    2022-05-10 [2] CRAN (R 4.3.1)
#>  cli                      3.6.1     2023-03-23 [2] CRAN (R 4.3.1)
#>  clue                     0.3-65    2023-09-23 [2] CRAN (R 4.3.1)
#>  cluster                  2.1.4     2022-08-22 [3] CRAN (R 4.3.1)
#>  codetools                0.2-19    2023-02-01 [3] CRAN (R 4.3.1)
#>  colorspace               2.1-0     2023-01-23 [2] CRAN (R 4.3.1)
#>  colourpicker             1.3.0     2023-08-21 [2] CRAN (R 4.3.1)
#>  ComplexHeatmap           2.18.0    2023-10-24 [2] Bioconductor
#>  crayon                   1.5.2     2022-09-29 [2] CRAN (R 4.3.1)
#>  curl                     5.1.0     2023-10-02 [2] CRAN (R 4.3.1)
#>  DBI                      1.1.3     2022-06-18 [2] CRAN (R 4.3.1)
#>  dbplyr                 * 2.3.4     2023-09-26 [2] CRAN (R 4.3.1)
#>  DelayedArray             0.28.0    2023-10-24 [2] Bioconductor
#>  digest                   0.6.33    2023-07-07 [2] CRAN (R 4.3.1)
#>  doParallel               1.0.17    2022-02-07 [2] CRAN (R 4.3.1)
#>  dplyr                    1.1.3     2023-09-03 [2] CRAN (R 4.3.1)
#>  DT                       0.30      2023-10-05 [2] CRAN (R 4.3.1)
#>  ellipsis                 0.3.2     2021-04-29 [2] CRAN (R 4.3.1)
#>  evaluate                 0.22      2023-09-29 [2] CRAN (R 4.3.1)
#>  ExperimentHub          * 2.10.0    2023-10-24 [2] Bioconductor
#>  fansi                    1.0.5     2023-10-08 [2] CRAN (R 4.3.1)
#>  fastmap                  1.1.1     2023-02-24 [2] CRAN (R 4.3.1)
#>  filelock                 1.0.2     2018-10-05 [2] CRAN (R 4.3.1)
#>  fontawesome              0.5.2     2023-08-19 [2] CRAN (R 4.3.1)
#>  foreach                  1.5.2     2022-02-02 [2] CRAN (R 4.3.1)
#>  generics                 0.1.3     2022-07-05 [2] CRAN (R 4.3.1)
#>  GenomeInfoDb           * 1.38.0    2023-10-24 [2] Bioconductor
#>  GenomeInfoDbData         1.2.11    2023-10-17 [2] Bioconductor
#>  GenomicRanges          * 1.54.0    2023-10-24 [2] Bioconductor
#>  GetoptLong               1.0.5     2020-12-15 [2] CRAN (R 4.3.1)
#>  ggplot2                  3.4.4     2023-10-12 [2] CRAN (R 4.3.1)
#>  ggrepel                  0.9.4     2023-10-13 [2] CRAN (R 4.3.1)
#>  GlobalOptions            0.1.2     2020-06-10 [2] CRAN (R 4.3.1)
#>  glue                     1.6.2     2022-02-24 [2] CRAN (R 4.3.1)
#>  gtable                   0.3.4     2023-08-21 [2] CRAN (R 4.3.1)
#>  htmltools                0.5.6.1   2023-10-06 [2] CRAN (R 4.3.1)
#>  htmlwidgets              1.6.2     2023-03-17 [2] CRAN (R 4.3.1)
#>  httpuv                   1.6.12    2023-10-23 [2] CRAN (R 4.3.1)
#>  httr                     1.4.7     2023-08-15 [2] CRAN (R 4.3.1)
#>  igraph                   1.5.1     2023-08-10 [2] CRAN (R 4.3.1)
#>  interactiveDisplayBase   1.40.0    2023-10-24 [2] Bioconductor
#>  IRanges                * 2.36.0    2023-10-24 [2] Bioconductor
#>  iSEE                     2.14.0    2023-10-24 [2] Bioconductor
#>  iSEEhub                * 1.4.0     2023-10-24 [1] Bioconductor
#>  iterators                1.0.14    2022-02-05 [2] CRAN (R 4.3.1)
#>  jquerylib                0.1.4     2021-04-26 [2] CRAN (R 4.3.1)
#>  jsonlite                 1.8.7     2023-06-29 [2] CRAN (R 4.3.1)
#>  KEGGREST                 1.42.0    2023-10-24 [2] Bioconductor
#>  knitr                    1.44      2023-09-11 [2] CRAN (R 4.3.1)
#>  later                    1.3.1     2023-05-02 [2] CRAN (R 4.3.1)
#>  lattice                  0.22-5    2023-10-24 [3] CRAN (R 4.3.1)
#>  lifecycle                1.0.3     2022-10-07 [2] CRAN (R 4.3.1)
#>  lubridate                1.9.3     2023-09-27 [2] CRAN (R 4.3.1)
#>  magrittr                 2.0.3     2022-03-30 [2] CRAN (R 4.3.1)
#>  Matrix                   1.6-1.1   2023-09-18 [3] CRAN (R 4.3.1)
#>  MatrixGenerics         * 1.14.0    2023-10-24 [2] Bioconductor
#>  matrixStats            * 1.0.0     2023-06-02 [2] CRAN (R 4.3.1)
#>  memoise                  2.0.1     2021-11-26 [2] CRAN (R 4.3.1)
#>  mgcv                     1.9-0     2023-07-11 [3] CRAN (R 4.3.1)
#>  mime                     0.12      2021-09-28 [2] CRAN (R 4.3.1)
#>  miniUI                   0.1.1.1   2018-05-18 [2] CRAN (R 4.3.1)
#>  munsell                  0.5.0     2018-06-12 [2] CRAN (R 4.3.1)
#>  nlme                     3.1-163   2023-08-09 [3] CRAN (R 4.3.1)
#>  pillar                   1.9.0     2023-03-22 [2] CRAN (R 4.3.1)
#>  pkgconfig                2.0.3     2019-09-22 [2] CRAN (R 4.3.1)
#>  plyr                     1.8.9     2023-10-02 [2] CRAN (R 4.3.1)
#>  png                      0.1-8     2022-11-29 [2] CRAN (R 4.3.1)
#>  promises                 1.2.1     2023-08-10 [2] CRAN (R 4.3.1)
#>  purrr                    1.0.2     2023-08-10 [2] CRAN (R 4.3.1)
#>  R6                       2.5.1     2021-08-19 [2] CRAN (R 4.3.1)
#>  rappdirs                 0.3.3     2021-01-31 [2] CRAN (R 4.3.1)
#>  RColorBrewer             1.1-3     2022-04-03 [2] CRAN (R 4.3.1)
#>  Rcpp                     1.0.11    2023-07-06 [2] CRAN (R 4.3.1)
#>  RCurl                    1.98-1.12 2023-03-27 [2] CRAN (R 4.3.1)
#>  RefManageR             * 1.4.0     2022-09-30 [2] CRAN (R 4.3.1)
#>  rintrojs                 0.3.2     2022-08-09 [2] CRAN (R 4.3.1)
#>  rjson                    0.2.21    2022-01-09 [2] CRAN (R 4.3.1)
#>  rlang                    1.1.1     2023-04-28 [2] CRAN (R 4.3.1)
#>  rmarkdown                2.25      2023-09-18 [2] CRAN (R 4.3.1)
#>  RSQLite                  2.3.1     2023-04-03 [2] CRAN (R 4.3.1)
#>  S4Arrays                 1.2.0     2023-10-24 [2] Bioconductor
#>  S4Vectors              * 0.40.0    2023-10-24 [2] Bioconductor
#>  sass                     0.4.7     2023-07-15 [2] CRAN (R 4.3.1)
#>  scales                   1.2.1     2022-08-20 [2] CRAN (R 4.3.1)
#>  sessioninfo            * 1.2.2     2021-12-06 [2] CRAN (R 4.3.1)
#>  shape                    1.4.6     2021-05-19 [2] CRAN (R 4.3.1)
#>  shiny                    1.7.5.1   2023-10-14 [2] CRAN (R 4.3.1)
#>  shinyAce                 0.4.2     2022-05-06 [2] CRAN (R 4.3.1)
#>  shinydashboard           0.7.2     2021-09-30 [2] CRAN (R 4.3.1)
#>  shinyjs                  2.1.0     2021-12-23 [2] CRAN (R 4.3.1)
#>  shinyWidgets             0.8.0     2023-08-30 [2] CRAN (R 4.3.1)
#>  SingleCellExperiment   * 1.24.0    2023-10-24 [2] Bioconductor
#>  SparseArray              1.2.0     2023-10-24 [2] Bioconductor
#>  stringi                  1.7.12    2023-01-11 [2] CRAN (R 4.3.1)
#>  stringr                  1.5.0     2022-12-02 [2] CRAN (R 4.3.1)
#>  SummarizedExperiment   * 1.32.0    2023-10-24 [2] Bioconductor
#>  tibble                   3.2.1     2023-03-20 [2] CRAN (R 4.3.1)
#>  tidyselect               1.2.0     2022-10-10 [2] CRAN (R 4.3.1)
#>  timechange               0.2.0     2023-01-11 [2] CRAN (R 4.3.1)
#>  utf8                     1.2.4     2023-10-22 [2] CRAN (R 4.3.1)
#>  vctrs                    0.6.4     2023-10-12 [2] CRAN (R 4.3.1)
#>  vipor                    0.4.5     2017-03-22 [2] CRAN (R 4.3.1)
#>  viridisLite              0.4.2     2023-05-02 [2] CRAN (R 4.3.1)
#>  withr                    2.5.1     2023-09-26 [2] CRAN (R 4.3.1)
#>  xfun                     0.40      2023-08-09 [2] CRAN (R 4.3.1)
#>  xml2                     1.3.5     2023-07-06 [2] CRAN (R 4.3.1)
#>  xtable                   1.8-4     2019-04-21 [2] CRAN (R 4.3.1)
#>  XVector                  0.42.0    2023-10-24 [2] Bioconductor
#>  yaml                     2.3.7     2023-01-23 [2] CRAN (R 4.3.1)
#>  zlibbioc                 1.48.0    2023-10-24 [2] Bioconductor
#> 
#>  [1] /tmp/RtmptFqWy0/Rinst2b1164455ed538
#>  [2] /home/biocbuild/bbs-3.18-bioc/R/site-library
#>  [3] /home/biocbuild/bbs-3.18-bioc/R/library
#> 
#> ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

9 Bibliography

This vignette was generated using BiocStyle (Oleś, 2023) with knitr (Xie, 2023) and rmarkdown (Allaire, Xie, Dervieux et al., 2023) running behind the scenes.

Citations made with RefManageR (McLean, 2017).

[1] J. Allaire, Y. Xie, C. Dervieux, et al. rmarkdown: Dynamic Documents for R. R package version 2.25. 2023. URL: https://github.com/rstudio/rmarkdown.

[2] M. W. McLean. “RefManageR: Import and Manage BibTeX and BibLaTeX References in R”. In: The Journal of Open Source Software (2017). DOI: 10.21105/joss.00338.

[3] A. Oleś. BiocStyle: Standard styles for vignettes and other Bioconductor documents. R package version 2.30.0. 2023. DOI: 10.18129/B9.bioc.BiocStyle. URL: https://bioconductor.org/packages/BiocStyle.

[4] R Core Team. R: A Language and Environment for Statistical Computing. R Foundation for Statistical Computing. Vienna, Austria, 2023. URL: https://www.R-project.org/.

[5] K. Rue-Albrecht. iSEEhub: iSEE for the Bioconductor ExperimentHub. R package version 1.4.0. 2023. DOI: 10.18129/B9.bioc.iSEEhub. URL: https://bioconductor.org/packages/iSEEhub.

[6] H. Wickham. “testthat: Get Started with Testing”. In: The R Journal 3 (2011), pp. 5–10. URL: https://journal.r-project.org/archive/2011-1/RJournal_2011-1_Wickham.pdf.

[7] H. Wickham, W. Chang, R. Flight, et al. sessioninfo: R Session Information. R package version 1.2.2. 2021. URL: https://CRAN.R-project.org/package=sessioninfo.

[8] Y. Xie. knitr: A General-Purpose Package for Dynamic Report Generation in R. R package version 1.44. 2023. URL: https://yihui.org/knitr/.