browse_checks: developer report on package check process in shiny

Description Usage Arguments Note Examples

View source: R/app_support.R

Description

developer report on package check process in shiny

Usage

1

Arguments

con

SQLiteConnection where tables of check results from rcmdcheck, etc., are stored

Note

dbDisconnect is run if the stop button is pressed to end shiny session. If stopped via ctrl-C or error, the connection may remain and require closure. N.B. The source codes for this app are in inst/app1, to simplify contribution to shinyapps.io. Interactive execution proceeds by copying the server and ui files to temporary folder where 'shiny::runApp()' is executed.

Examples

1
2
3
4
5
6
if (interactive()) {
 con = RSQLite::dbConnect(RSQLite::SQLite(), 
  system.file("sqlite/demo2.sqlite", package="BiocBBSpack"), flags=RSQLite::SQLITE_RO)
 print(RSQLite::dbListTables(con))
 browse_checks(con)
}

vjcitn/BiocBBSpack documentation built on Nov. 21, 2020, 1:18 p.m.