Description Usage Arguments Value Examples
Plot the consistancy between two peak lists by their significance.
1 2 3 |
x |
A GRanges of identified peaks from one method or one replicate. At least one meta column should be included to allow for significance ranking of peaks. |
y |
A GRanges of identified peaks from compared method or anoter replicate. At least one meta column should be included to allow for significance ranking of peaks. |
ranks |
A non-negative integer vector specifying the ranks to be used for CAT plot. |
exclude |
A GRanges object specifying regions to be excluded for CAT plot, such as the blacklist regions proposed by ENCODE Consortium. |
seqinfo |
A vector of chromosome names to limit the CAT plot to
selected chromosomes. Chromosome names here must be in the same format
as |
esx |
A non-negative integer specifying which meta column of
|
esy |
A non-negative integer specifying which meta column of
|
add |
A logical vector which, when TRUE, adds the current plotting line to existing plots. FALSE will generate a new plot. |
... |
Other parameters passed to |
A CAT plot.
1 2 3 4 5 6 7 8 | bam <- system.file("extdata", "chipseq.bam", package="gcapc")
cov <- read5endCoverage(bam)
bdw <- bindWidth(cov)
gcb1 <- gcEffects(cov, bdw, sampling=c(0.15,1), plot=FALSE)
peaks1 <- gcapcPeaks(cov, gcb1, bdw)
gcb2 <- gcEffects(cov, bdw, sampling=c(0.2,1), plot=FALSE)
peaks2 <- gcapcPeaks(cov, gcb2, bdw)
peaksCAT(peaks1, peaks2, ranks=seq(100,200,5), ylim=c(0,1))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.