plotQuadPosition | R Documentation |
Using a vector returned by getQuadCoveragePercentage(), plot the percentage of peaks that have G-quadruplexes across positions in sequences around the ChIP-SEQ peaks
plotQuadPosition(featurePercentages, title)
featurePercentages |
a numeric vector containing percentages such as a vector returned by getQuadCoveragePercentage() |
title |
a string specifying the title of the plot |
returns a plot of G-Quadruplex Abundance
path <- system.file("extdata", "MAZ_very_small_test.bed", package = "ChIPAnalyzer")
reports <- findQuads(bedPath = path,
seqWidth = 200,
assemblyVersion = "hg19")
qMatrix <- getQuadMatrix(quadReports = reports)
quadCoveragePercentage <- getQuadCoveragePercentage(quadMatrix = qMatrix)
plotQuadPosition(quadCoveragePercentage, "MAZ G-Quad Abundance")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.