getQuadCoveragePercentage | R Documentation |
Using the matrix returned by getQuadMatrix, calculate the percentage abundance quadruplexes at positions dictated by the columns of quadMatrix
getQuadCoveragePercentage(quadMatrix)
quadMatrix |
a matrix in that format returned from getQuadMatrix, with each row representing a different sequence a columns representing positions, with a 1 indicated presence of a quadruplex and 0 otherwise |
a vector of percentages indicating the percentage of rows in quadmatrix that there was a 1(quadruplex) at the position represented by that column
path <- system.file("extdata", "MAZ_very_small_test.bed", package = "ChIPAnalyzer")
reports <- findQuads(bedPath = path,
seqWidth = 200,
assemblyVersion = "hg19")
qMatrix <- getQuadMatrix(quadReports = reports, maxOnly = TRUE)
quadCoveragePercentage <-
getQuadCoveragePercentage(quadMatrix = qMatrix)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.