report {RLSeq} | R Documentation |
Builds an HTML report to showcase the results available in the supplied RLRanges object (see also RLResults).
report(object, reportPath = "rlreport.html", quiet = FALSE, ...)
object |
An RLRanges object. |
reportPath |
A path indicating the report output HTML file. Default: "rlreport.html" |
quiet |
If TRUE, messages are suppressed. Default: FALSE. |
... |
Arguments passed to |
TRUE
# Example data with RLSeq() already run. rlr <- readRDS(system.file("extdata", "rlrsmall.rds", package = "RLSeq")) # Get a TMP file (only for example usae) tmp <- tempfile() # Generate the report report(rlr, reportPath = tmp)