README.md

Build Status codecov

chimeraviz

chimeraviz is an R package that automates the creation of chimeric RNA visualizations.

Citations

If you wish to cite chimeraviz, please cite this application note.

Previous citations: 1. Alternative PDGFD rearrangements in dermatofibrosarcomas protuberans without PDGFB fusions 2. Transcriptional-Readthrough RNAs Reflect the Phenomenon of “A Gene Contains Gene(s)” or “Gene(s) within a Gene” in the Human Genome, and Thus Are Not Chimeric RNAs 3. FuSpot: a web-based tool for visual evaluation of fusion candidates 4. Clinker: visualizing fusion genes detected in RNA-seq data 5. Integrative analysis of DNA and RNA sequencing data from cancer 6. Clinicopathologic Features of CIC-NUTM1 Sarcomas, a New Molecular Variant of the Family of CIC-Fused Sarcomas 7. Clinicopathologic and Molecular Features of a Series of 41 Biphenotypic Sinonasal Sarcomas Expanding Their Molecular Spectrum 8. Genomic Profiling Of Primary Histiocytic Sarcoma Reveals Two Molecular Subgroups 9. Using R and Bioconductor in Clinical Genomics and Transcriptomics 10. annoFuse: an R Package to annotate and prioritize putative oncogenic RNA fusions 11. CRTC1-TRIM11 fusion defined melanocytic tumors: A series of four cases 12. Detailed Molecular and Immune Marker Profiling of Archival Prostate Cancer Samples Reveals an Inverse Association between TMPRSS2:ERG Fusion Status and Immune Cell Infiltration 13. FGviewer: an online visualization tool for functional features of human fusion genes 14. Molecular characterization of organoids derived from pancreatic intraductal papillary mucinous neoplasms 15. RNA-sequencing of IDH-wild-type glioblastoma with chromothripsis identifies novel gene fusions with potential oncogenic properties 16. Immuno-genomic classification of colorectal cancer organoids reveals cancer cells with intrinsic immunogenic properties associated with patient survival 17. Fusion Genes in Prostate Cancer: A Comparison in Men of African and European Descent 18. Integrative multi-omics analysis reveals molecular subtypes and tumor evolution of synovial sarcoma 19. MALAT1 Fusions and Basal Cells Contribute to Primary Resistance against Androgen Receptor Inhibition in TRAMP Mice 20. Characterization of a castrate-resistant prostate cancer xenograft derived from a patient of West African ancestry 21. Novel transcription-induced fusion RNAs in prostate cancer 22. An organoid biobank for childhood kidney cancers that captures disease and tissue heterogeneity 23. Analyses transcriptomiques et fonctionnelles des anomalies moléculaires récurrentes des sarcomes du stroma endométrial 24. Genomic landscape of uveal melanoma 25. Targeted in silico characterization of fusion transcripts in tumor and normal tissues via FusionInspector 26. Detección de fusiones génicas en datos de secuenciación de RNA en muestras de pacientes con melanoma lentiginoso acral del INCan-México 27. Comparative transcriptome characterization of esophageal squamous cell carcinoma and adenocarcinoma

Demo

The following is an excerpt of the package vignette.

Basic features

chimeraviz allows you to import data from these different fusion-finders:

  1. deFuse
  2. EricScript
  3. InFusion
  4. JAFFA
  5. FusionCatcher
  6. FusionMap
  7. PRADA
  8. SOAPFuse
  9. STAR-FUSION
  10. ChimPipe
  11. SQUID
  12. Aeron

Getting started is easy:

# Load chimeraviz
library(chimeraviz)

# Get reference to results file from deFuse
defuse833ke <- system.file(
"extdata",
"defuse_833ke_results.filtered.tsv",
package="chimeraviz")

# Load the results file into a list of fusion objects
fusions <- import_defuse(defuse833ke, "hg19")

Import functions for the other supported fusion-finders are similarly named (for example import_eriscript or import_infusion).

A list of Fusion objects, objects that represent each fusion transcript, is now available in the list fusions.

length(fusions)
## [1] 17

As you can see, this list has 17 fusion objects. It is straightforward to find a specific fusion event and print information about it, or about each of the partner genes.

# Find a specific fusion event
fusion <- get_fusion_by_id(fusions, 5267)

# Show information about this fusion event
fusion
## [1] "Fusion object"
## [1] "id: 5267"
## [1] "Fusion tool: defuse"
## [1] "Genome version: hg19"
## [1] "Gene names: RCC1-HENMT1"
## [1] "Chromosomes: chr1-chr1"
## [1] "Strands: +,-"
## [1] "In-frame?: FALSE"

# Show information about the upstream fusion partner
upstream_partner_gene(fusion)
## [1] "PartnerGene object"
## [1] "Name: RCC1"
## [1] "ensemblId: ENSG00000180198"
## [1] "Chromosome: chr1"
## [1] "Strand: +"
## [1] "Breakpoint: 28834672"

# Show information about the downstream fusion partner
downstream_partner_gene(fusion)
## [1] "PartnerGene object"
## [1] "Name: HENMT1"
## [1] "ensemblId: ENSG00000162639"
## [1] "Chromosome: chr1"
## [1] "Strand: -"
## [1] "Breakpoint: 109202584"

Plotting

Overview plot

The overview plot is a nice way to get an overview over the nominated fusions in a sample. It will produce a circular plot like this one:

overview plot

In this plot, you can see the following:

See how to build this plot in the package vignette: Building the overview plot.

Fusion reads plot

The fusion reads plot is a way to visualize the reads supporting a fusion event mapped to the putative fusion sequence. Many fusion finders report a putative fusion sequence, and by mapping reads to this sequence visualize how well the fusion event is supported. The function plot_fusion_reads() will, given enough data, produce a plot like this one:

fusion reads plot

As seen in the plot (you might want to open the image in a new tab and zoom in), this fusion event is supported by 6 paired end reads.

See how to build this plot in the package vignette: Building the fusion reads plot.

Fusion plot

The fusion plot is the main product of chimeraviz, created with the plot_fusion function. It will create a plot like this one:

fusion plot

Or, alternatively:

fusion plot reduced

This plot holds a lot of information. You can see:

The fusion you can see above is the RCC1-HENMT1 fusion described by Andreas M. Hoff et al. in the paper Identification of Novel Fusion Genes in Testicular Germ Cell Tumors (Cancer Research, 2016).

Note that the plot reverses genes as necessary, so that the fused genes are plotted in the "correct" (5'-to-3') relative orientation.

See how to build this plot in the package vignette: Building the fusion plot.

Fusion transcripts plot

If you are only interested in the transcripts of each partner gene in a fusion event, then it is not necessary to show all the information that is in the fusion plot. The transcripts plot is designed to give a simple view on the transcripts that might be included in the fusion transcript:

fusion transcripts plot

See how to build this plot in the package vignette: Building the fusion transcripts plot.

Fusion transcript plot

The fusion transcript plot shows the reduced version of all exons that could be part of a fusion transcript. This is a way to view all the possible parts of a fusion transcript merged into one.

fusion transcript plot

See how to build this plot in the package vignette: Building the fusion transcript plot.

Fusion transcript graph plot

All that is known about a fusion event is that a fusion-finder has scored a possible link between two genes. If there are four transcript variants of the upstream gene partner and four transcript variants of the downstream gene partner, then there are in total sixteen different splice variants of the finally processed fusion transcript. And that is only if we count the known, annotated variants of each gene. How can we make sense of all this? Plotting the transcript together as in previous plots helps, but there is a better way to visualize the putative fusion transcript: As a graph. By representing transcripts as a graph, with exons as nodes and splice junctions as edges, it is much easier to get a view on the putative fusion transcript.

fusion transcript graph plot

See how to build this plot in the package vignette: Building the fusion transcript plot.

Fusion transcript plot with protein domain annotations

The fusion transcript plot with protein domain annotations shows a specific fusion transcript along with protein domain annotation data. If a bamfile is specified, the fusion transcript will be plotted with coverage information as well.

fusion transcript plot with protein domain annotations

See how to build this plot in the package vignette: Building the fusion transcript plot with protein domain annotations.

Installing chimeraviz

From Bioconductor

chimeraviz is a Bioconductor package, and is most easily installed via Bioconductor. Please follow the installation instructions here.

From BioConda

Since BioConductor packages are also available as BioConda packages, chimeraviz is also available there: https://anaconda.org/bioconda/bioconductor-chimeraviz.

NOTE: You will likely not get the latest version of chimeraviz if you use the BioConda package. For the latest and greatest, please install from BioConductor.

From BioContainers

BioConda packages are also available as BioContainers, so chimeraviz is available as a Docker container. See https://quay.io/repository/biocontainers/bioconductor-chimeraviz?tab=tags.

NOTE: You will likely not get the latest version of chimeraviz if you use the BioContainers Docker image. For the latest and greatest, please install from BioConductor.

From the GitHub repository

If you want to build the package yourself you can follow these instructions: 1. Install the dependencies listed under Imports, Depends, and Suggests in the package DESCRIPTION file. 1. Run this command to install the package:

devtools::install_github(
  "stianlagstad/chimeraviz",
  build_vignettes = TRUE)

Please create an issue on Github if you have any problems at all.

Development

Docker

The easiest way to get started working on chimeraviz is by using Docker. See the README.md file in the docker/ folder in this repository for more information.

Conda

You can also work on chimeraviz within a Conda environment. Here are the steps to follow:

  1. Install conda: Following instructions here.
  2. Run the command conda env create -n chimeraviz_release -f environment.yml from the root of this repository.
  3. Run the command conda activate chimeraviz_release to activate the conda environment.

Tests

Tests are written with testthat and are located in tests/testthat. They can be run with devtools::test() if you have cloned this repository, i.e. not installed the package with devtools::install_github() but have used git clone git@github.com:stianlagstad/chimeraviz.git chimeraviz.

Credits

This package was developed by Stian Lågstad for his master thesis: Visualizing chimeric RNA. The work was supervised by Rolf Skotheim and Ole Christian Lingjærde.

The thesis is available here. The application note in Oxford Bioinformatics is available here.

Licence

Artistic Licence 2.0.



stianlagstad/chimeraviz documentation built on Dec. 3, 2023, 8:11 p.m.