createFusionReport {chimeraviz}R Documentation

Create a Fusion Report

Description

This function will create a html report with an overplot and a sortable, searchable table with the fusion data.

Usage

createFusionReport(fusions, outputFilename, quiet = TRUE)

Arguments

fusions

A list of Fusion objects.

outputFilename

Output html-file filename.

quiet

Parameter passed to rmarkdown::render() to toggle its output.

Value

Creates a html report with an overplot and a sortable, searchable table with the fusion data.

Examples

# Load data
defuse833ke <- system.file(
  "extdata",
  "defuse_833ke_results.filtered.tsv",
  package="chimeraviz")
fusions <- importDefuse(defuse833ke, "hg19", 3)
# Temporary file to store the report
outputFilename <- tempfile(
  pattern = "fusionReport",
  fileext = ".html",
  tmpdir = tempdir())
# Create report
createFusionReport(fusions, outputFilename)


[Package chimeraviz version 1.4.3 Index]