startStandalone: Start a standalone epivizr session.
Description
Uses the local repository of epiviz JS app to start a standalone epivizr session
through the startEpiviz function. The epiviz app requires a list
of sequence names and lengths (e.g., chromsome names and lengths) to setup genome browsing.
These can be passed in the seqinfo argument or derived from the gene_track argument.
The gene_track argument can be used to pass a genome annotation and add a gene track to the
epiviz browser. See package vignette for further detail.
# see package vignete for example usageseqinfo <- GenomeInfoDb::Seqinfo(c("chr1","chr2"), c(10,20))
app <- startStandalone(seqinfo=seqinfo, non_interactive=TRUE)
app$stop_app()