build/start-gui.R

args <- commandArgs(trailingOnly=TRUE)
options(warn=2)
install.packages('.', repos=NULL, type="source")
host <- '0.0.0.0'
port <- 8080
if (0 < length(args)) {
    address <- unlist(strsplit(args[1],':'))
    if (length(address) == 2) {
        host <- address[1]
        port <- as.numeric(address[2])
    } else {
        port <- as.numeric(args[1])
    }
}

IsoplotRgui::daemon(host=host, port=port)

Try the IsoplotRgui package in your browser

Any scripts or data that you put into this service are public.

IsoplotRgui documentation built on Nov. 10, 2023, 5:07 p.m.