saveTnT: Save a TnTBoard to an HTML file

saveTnTR Documentation

Save a TnTBoard to an HTML file

Description

A simple wrapper of saveWidget, which saves a TnTBoard/TnTGenome object to an HTML file (e.g. for sharing with others).

Usage

saveTnT(
  tntdef,
  file,
  selfcontained = TRUE,
  libdir = NULL,
  background = "white",
  knitrOptions = list()
)

Arguments

tntdef

A TnTBoard/TnTGenome object to save.

file, selfcontained, libdir, background, knitrOptions

Passed to saveWidget.

Value

Return NULL.

Examples

data <- GRanges("chr2", IRanges(c(6,9,42), width = 1),
                value = c(0.3, 0.5, 0.9))
track <- PinTrack(data, label = NULL, background = "green")
genome <- TnTGenome(list(track))
destfile <- tempfile(fileext = ".html")
destfile
saveTnT(genome, destfile)
## Not run: 
utils::browseURL(destfile)

## End(Not run)

Marlin-Na/TnT documentation built on Sept. 15, 2024, 5:27 a.m.