Description Usage Arguments Value Examples
This function will return a single GRanges object containing all denovo deletions that passed filtering from a Circular Binary Segmentation object with supplementary information.
1 | denovoDeletions(cbs, mCounts, bins)
|
cbs |
The output from segmentMD(). |
mCounts |
The normalized counts matrix output by normalizeCounts(). |
bins |
The set of bins determined by calcBins(). |
A GRanges
object that reports all detected denovo deletions
passing requite filters.
1 2 3 4 5 6 7 | load(system.file("extdata", 'bins.RData', package = "MDTS"))
load(system.file("extdata", 'counts.RData', package = "MDTS"))
load(system.file("extdata", 'pD.RData', package = "MDTS"))
mCounts = normalizeCounts(counts, bins)
md = calcMD(mCounts, pD)
cbs = segmentMD(md, bins)
denovo = denovoDeletions(cbs, mCounts, bins)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.