R/problemPage.R
problemPage.Rd
This is a quick way to get an HTML report of packages maintained by a specific developer or which depend directly on a specified package. The function is keyed to filter based on either the maintainer name or by using the 'Depends', 'Suggests' and 'Imports' fields in package descriptions.
problemPage(
authorPattern = "V.*Carey",
dependsOn,
ver = "devel",
includeOK = FALSE
)
character(1) regexp used with grep() to filter author field of package DESCRIPTION for listing
character(1) name of a Bioconductor package. The function will return the status of packages that directly depend on this package Can only be used when 'authorPattern' is the empty string.
character(1) version tag for Bioconductor
logical(1) include entries from the build report that are listed as "OK". Default FALSE will result in only those entries that are in WARNING or ERROR state.
DT::datatable call; if assigned to a variable, must evaluate to get the page to appear
if (interactive()) {
problemPage()
problemPage(dependsOn = "limma")
}