Usage
cromwell_config(cromwell_url = NULL, verbose = TRUE)
Arguments
- cromwell_url
(character) Cromwell server URL. The full url,
for example "http://localhost:8000" or "https://mycromwell.com"
- verbose
(logical) verbose messaging. default: TRUE
. this
toggles on (TRUE
) or off (FALSE
) all messages throughout the package.
Details
Note that although the default value for cromwell_url
is
NULL
, we fetch the current value of CROMWELLURL
env var internally
if cromwell_url=NULL
- thus, we retain a value for CROMWELLURL
if
it is set even if this function is run without passing anything to
cromwell_url
Examples
if (FALSE) { # \dontrun{
cromwell_config()
cromwell_config("https://mycromwellinstance.com")
cromwell_config(verbose = FALSE)
} # }