2 Example

First, let us set up the core elements of a simple application (see ?iSEEindex).

library("BiocFileCache")

##
# BiocFileCache ----
##

library(BiocFileCache)
bfc <- BiocFileCache(cache = tempdir())

##
# iSEEindex ----
##

dataset_fun <- function() {
  x <- yaml::read_yaml(system.file(package = "iSEEindex", "example.yaml"))
  x$datasets
}

initial_fun <- function() {
  x <- yaml::read_yaml(system.file(package = "iSEEindex", "example.yaml"))
  x$initial
}

Then, we design header and footer content, each wrapped in a shiny::fluidRow().

library("shiny")
header <- fluidRow(shinydashboard::box(width = 12L, 
  column(width = 10,
    p(strong("Welcome to this demonstration app!")),
    p(
      "This is an example header that demonstrate how to use the functionality.",
      "A great place for branding and intros.",
    ),
    p("On the right, we demonstrate how other content such as images can be added to this header.")
  ),
  column(width = 2, img(src="www/iSEE.png", width = "100px", height = "120px"))
))
footer <- fluidRow(shinydashboard::box(width = 12L,
  p("This is a example footer. A great place for copyright statements and outros.", style="text-align: center;"),
  p(
    "© 2023 iSEE.",
    a("Artistic-2.0", href = "https://opensource.org/license/artistic-2-0/"),
    style="text-align: center;")
  ))

For the image file to be found, the containing directory must be added to the Shiny resource path as follows:

library("shiny")
addResourcePath("www", system.file(package = "iSEEindex"))

Finally, we supply the custom header and footer to iSEEindex().

library("iSEEindex")
app <- iSEEindex(bfc, dataset_fun, initial_fun,
  body.header = header, body.footer = footer
)

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

3 Reproducibility

The iSEEindex 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("header.Rmd", "BiocStyle::html_document"))

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

Date the vignette was generated.

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

Wallclock time spent generating the vignette.

#> Time difference of 11.323 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)
#>  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
#>  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)
#>  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)
#>  IRanges              * 2.36.0    2023-10-24 [2] Bioconductor
#>  iSEE                   2.14.0    2023-10-24 [2] Bioconductor
#>  iSEEindex            * 1.0.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)
#>  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)
#>  paws.common            0.6.2     2023-10-13 [2] CRAN (R 4.3.1)
#>  paws.storage           0.4.0     2023-09-11 [2] 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)
#>  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)
#>  triebeard              0.4.1     2023-03-04 [2] CRAN (R 4.3.1)
#>  urltools               1.7.3     2019-04-14 [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)
#>  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/RtmpRMSm93/Rinst2b1a4b42518916
#>  [2] /home/biocbuild/bbs-3.18-bioc/R/site-library
#>  [3] /home/biocbuild/bbs-3.18-bioc/R/library
#> 
#> ──────────────────────────────────────────────────────────────────────────────────────────────────

4 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. iSEEindex: iSEE extension for a landing page to a custom collection of data sets. R package version 1.0.0. 2023. DOI: 10.18129/B9.bioc.iSEEindex. URL: https://bioconductor.org/packages/iSEEindex.

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