Description Objects from the Class Slots Methods Author(s) See Also Examples
This class of objects can be returned by the scanMultiCovg
or computeMultiCNV
functions to represent patternCNV results, specifically, coverage, CNV log2-ratio and FDR results.
Objects can be created by calls of the form new("PatCNVData", ...)
.
eSet
:Object of class SummarizedExperiment
: a set container where rows represent exons and columns represent samples
method.info
:Object of class "list"
: a list of method information
datatype.vec
:Object of class "character"
: character vector of different data types
sample.covg.vec
:Object of class "numeric"
: numerical vector of sample-level coverage
N.exon
:Object of class "numeric"
: number of exons
N.sample
:Object of class "numeric"
: number of samples
signature(obj = "PatCNVData")
: compute average coverage of exons across samples
signature(obj = "PatCNVData")
: retrieve log2ratio CNV matrix
signature(obj = "PatCNVData")
: retrieve coverage matrix
signature(obj = "PatCNVData")
: retrieve exon information
signature(obj = "PatCNVData")
: number of exons
signature(obj = "PatCNVData")
: retrieve FDR matrix
signature(obj = "PatCNVData")
: summarize sample-level coverage
signature(obj = "PatCNVData")
: retrieve sample information
signature(obj = "PatCNVData")
: number of samples
signature(object = "PatCNVData")
: summarize patternCNV data information
signature(object = "PatCNVData")
: summarize patternCNV data information
Chen Wang
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #=== load simulated data with pre-computed coverage and CNV
data(sim.cnvData)
#=== display class of simulated data
typeof(sim.cnvData)
#=== print basic information of the created object
summary(sim.cnvData)
#=== list coverage information of a few top exons of sample "n3" and "n5"
head(coverageMatrix(sim.cnvData, c("n3","n5")))
#=== display CNV log2ratio of exons of gene "SLC25A17" of samples "n2" and "n5"
cnvMatrix(sim.cnvData, c("n2","n5"),"SLC25A17")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.