Export BioCompute Object as HTML
export_html(x, file, wrap = FALSE, linewidth = 80, ...)
BioCompute Object JSON string from convert_json
HTML output file path
Should the long lines be wrapped?
Maximum linewidth when wrap
is TRUE
.
Additional parameters for render
.
Path to the output file
if (FALSE) {
file_html <- tempfile(fileext = ".html")
generate_example("HCV1a") %>%
convert_json() %>%
export_html(file_html)
}