R/isGoodPrecheckResponse.R

Defines functions isGoodPrecheckResponse

Documented in isGoodPrecheckResponse

#' @describeIn isBadPrecheckResponse check if the response is GOOD
#'
#' @return isGoodPrecheckResponse: boolean, TRUE if the response is GOOD
#' 
isGoodPrecheckResponse <- function(response){
    goodKey = "Precheck is complete. No problems were found in this pipeline configuration."
    any( grepl(goodKey, response) )
}
IvoryC/shinyBioLockJ documentation built on May 29, 2021, 7:40 a.m.