Launch Guild Viewer
Usage
guild_view(
runs = NULL,
...,
host = NULL,
port = NULL,
include_batch = FALSE,
no_open = FALSE,
stop = FALSE
)
Arguments
- runs
an optional runs selection.
- ...
passed on to
guild view
.- host
Name of host interface to listen on.
- port
Port to listen on.
- include_batch
(bool) Include batch runs.
- no_open
(bool) Don't open Guild View in a browser.
- stop
Stop the existing Guild View application.
Value
The url where the Guild View application can be accessed.
The url where the View application can be accessed, invisibly.
Examples
if (FALSE) {
guild_view()
# see all supported options
guild_view("--help")
# three valid ways of supplying args to the guild executable
guild_view("--port" = "5678")
guild_view("--port", "5678")
guild_view(c("--port", "5678"))
}