Description Usage Arguments Details Value Author(s) See Also Examples
This function creates a by-gene table by listing all the genes contained in each
of the segments in the segmentation table.
Gene annotations (symbol, location,...), segmented Log2Ratios, and segment
legnth are reported in the final table.
A supplementary score is the relativeLog
: the magnitude, in Log2, from
the closest centromere.
1 2 |
segTable |
: data frame. A segmentation table exported from an object of class
|
symbol |
: character. A valid HUGO symbol. When |
genome |
: string. The genome build to use. Supported genomes are |
columns |
: string. what supplementary genes annotations to export.
Allowed annotations are those supported by the
|
verbose |
: logical. When |
For gene annotations, Hg19/GRCh37 annotations downloaded from NCBI are considered.
An object of class "rCGH"
Frederic Commo
1 2 3 4 5 6 7 8 9 | filePath <- system.file("extdata", "Affy_cytoScan.cyhd.CN5.CNCHP.txt.bz2",
package = "rCGH")
cgh <- readAffyCytoScan(filePath, sampleName = "AffyScHD")
cgh <- adjustSignal(cgh, nCores=1)
cgh <- segmentCGH(cgh, nCores=1)
cgh <- EMnormalize(cgh)
st <- getSegTable(cgh)
bygene <- byGeneTable(st)
head(bygene)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.