1 Initial app configurations

1.1 Overview

Initial app configurations configure the set of panels and their respective initial state when the main iSEE app is launched.

Initial app configurations are implemented as R scripts that are stored in the inst/initial subdirectory of the iSEEhub package. Within that directory, the app expects a subdirectory named exactly as the EH identifier of each dataset for which additional configurations are made available. Within each dataset-specific directory, the app expects any number of R scripts, each script defining one configuration.

Contributions to initial app configurations are welcome to the iSEEhub as pull requests, both as new configurations and edits to existing configurations.

1.2 Requirements

An initial configuration script must define at least one object called initial, that contains a list of instances of panel classes defined in the iSEE package – so-called built-in panels – and other packages that extend iSEE functionality. That is, packages like iSEEu and iSEEhex.

Other objects created by configuration scripts are ignored. We encourage users to refrain from creating any other object than initial, to avoid any unexpected behaviour in the app.

1.3 Example

For demonstration, the package includes two configurations for the dataset EH1.

The scripts that define those configurations are stored within the directory inst/initial/EH1. Within that directory, the files are named config_1.R and config_error.R.

The script config_1.R defines an initial app state that contains only one panel, namely a ComplexHeatmapPlot, that is configured to span half the width of the app (6 out of 12 units in shiny units), and displays the metadata gender and status as color bars next to the heat map.

## EH1/config_1.R
library(iSEE)

initial <- list(
    ComplexHeatmapPlot(
        PanelWidth = 6L,
        ColumnData = c("gender", "tumor_status")
    )
)

Conversely, the script config_error.R provides a brutal example of an invalid script that throws an error. This script is only included in the package to test and demonstrate that the app fails elegantly when an invalid configuration is supplied (which should never happen in the first place).

## EH1/config_error.R
# This script demonstrates how the app handles a bad configuration.

stop("Bad config script!")

1.4 Process for contributing

  • Fork the GitHub repository for iSEEhub.
  • Create and/or edit appropriate files and directories within the inst/initial directory.
  • Test your new configuration(s) locally; install the updated iSEEhub package, launch the app, and load dataset(s) using the new configuration(s).
  • Open a pull request on the GitHub repository iSEEhub.
  • Wait for maintainers to review and approve the pull request.

2 Reproducibility

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

  • R (R Core Team, 2023)
  • BiocStyle (Oleś, 2023)
  • knitr (Xie, 2023)
  • RefManageR (McLean, 2017)
  • rmarkdown (Allaire, Xie, Dervieux, McPherson, Luraschi, Ushey, Atkins, Wickham, Cheng, Chang, and Iannone, 2023)
  • sessioninfo (Wickham, Chang, Flight, Müller, and Hester, 2021)
  • testthat (Wickham, 2011)

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:38 EDT"

Wallclock time spent generating the vignette.

#> Time difference of 0.577 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
#>  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)
#>  BiocManager   1.30.22 2023-08-08 [2] CRAN (R 4.3.1)
#>  BiocStyle   * 2.30.0  2023-10-24 [2] Bioconductor
#>  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)
#>  cli           3.6.1   2023-03-23 [2] CRAN (R 4.3.1)
#>  digest        0.6.33  2023-07-07 [2] CRAN (R 4.3.1)
#>  evaluate      0.22    2023-09-29 [2] CRAN (R 4.3.1)
#>  fastmap       1.1.1   2023-02-24 [2] CRAN (R 4.3.1)
#>  generics      0.1.3   2022-07-05 [2] CRAN (R 4.3.1)
#>  glue          1.6.2   2022-02-24 [2] CRAN (R 4.3.1)
#>  htmltools     0.5.6.1 2023-10-06 [2] CRAN (R 4.3.1)
#>  httr          1.4.7   2023-08-15 [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)
#>  knitr         1.44    2023-09-11 [2] 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)
#>  plyr          1.8.9   2023-10-02 [2] CRAN (R 4.3.1)
#>  R6            2.5.1   2021-08-19 [2] CRAN (R 4.3.1)
#>  Rcpp          1.0.11  2023-07-06 [2] CRAN (R 4.3.1)
#>  RefManageR  * 1.4.0   2022-09-30 [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)
#>  sass          0.4.7   2023-07-15 [2] CRAN (R 4.3.1)
#>  sessioninfo * 1.2.2   2021-12-06 [2] CRAN (R 4.3.1)
#>  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)
#>  timechange    0.2.0   2023-01-11 [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)
#>  yaml          2.3.7   2023-01-23 [2] CRAN (R 4.3.1)
#> 
#>  [1] /tmp/RtmptFqWy0/Rinst2b1164455ed538
#>  [2] /home/biocbuild/bbs-3.18-bioc/R/site-library
#>  [3] /home/biocbuild/bbs-3.18-bioc/R/library
#> 
#> ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

3 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/.