makeCgh | R Documentation |
Constructs a 'cghRaw', 'cghSeg', or 'cghCall' object.
makeCgh(object, filter=TRUE, chromosomeReplacements=c(X = 23, Y = 24, MT = 25), ...)
object |
A |
filter |
If |
chromosomeReplacements |
A named integer vector of chromosome name
replacements to be done. QDNAseq stores chromosome names as
characters, but CGHcall expects them to be integers. Defaults to
|
... |
Not used. |
Returns a cghRaw
if the object has not been segmented,
a cghSeg
if it has been segmented but not called,
or cghCall
if it has been called as well.
Ilari Scheinin
data(LGG150)
readCounts <- LGG150
readCountsFiltered <- applyFilters(readCounts)
readCountsFiltered <- estimateCorrection(readCountsFiltered)
copyNumbers <- correctBins(readCountsFiltered)
copyNumbersNormalized <- normalizeBins(copyNumbers)
copyNumbersSmooth <- smoothOutlierBins(copyNumbersNormalized)
cgh <- makeCgh(copyNumbersSmooth)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.