import_fusionmap: Import results from a FusionMap run into a list of Fusion...

Description Usage Arguments Value Examples

Description

A function that imports the results from a FusionMap run, typically from a InputFastq.FusionReport.txt file, into a list of Fusion objects.

Usage

1
import_fusionmap(filename, genome_version, limit)

Arguments

filename

Filename for the FusionMap PairedEndFusionReport.txt results file.

genome_version

Which genome was used in mapping (hg19, hg38, etc.).

limit

A limit on how many lines to read.

Value

A list of Fusion objects.

Examples

1
2
3
4
5
6
fusionmapData <- system.file(
  "extdata",
  "FusionMap_01_TestDataset_InputFastq.FusionReport.txt",
  package = "chimeraviz")
fusions <- import_fusionmap(fusionmapData, "hg19", 3)
# This should import a list of 3 fusions described in Fusion objects.

chimeraviz documentation built on Jan. 19, 2021, 2 a.m.