plotHostGenes {circRNAprofiler} | R Documentation |
The function plotHostGenes() generates a bar chart showing the no. of circRNAs produced from each the circRNA host gene.
plotHostGenes(annotatedBSJs, title = "")
annotatedBSJs |
A data frame with the annotated back-spliced junctions.
This data frame can be generated with |
title |
A character string specifying the title of the plot. |
A ggplot object.
# Load data frame containing detected back-spliced junctions data("mergedBSJunctions") # Load short version of the gencode v19 annotation file data("gtf") # Annotate the first 10 back-spliced junctions annotatedBSJs <- annotateBSJs(mergedBSJunctions[1:10, ], gtf) # Plot p <- plotHostGenes(annotatedBSJs, title = "") p