Description Objects from the Class Methods Details See Also Examples
Batch statistics used for estimating copy number are stored as AssayData in the 'batchStatistics' slot of the CNSet class. Each element in the AssayData must have the same number of rows and columns. Rows correspond to features and columns correspond to batch.
A virtual Class: No objects may be created from it.
signature(object = "AssayData")
: ...
signature(object = "AssayData")
: ...
signature(object = "AssayData", allele = "character")
: ...
signature(object = "AssayData", allele = "character")
: ...
signature(object = "AssayData", allele = "character")
: ...
lM
: Extracts entire list of linear model parameters.
corr
: The within-genotype correlation of log2(A) and log2(B) intensities.
nu
: The intercept for the linear model. The linear model is
fit to the A and B alleles independently.
phi
: The slope for the linear model. The linear model is fit
independently to the A and B alleles.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | library(crlmm)
library(Biobase)
data(cnSetExample, package="crlmm")
cnSet <- cnSetExample
isCurrent(cnSet)
assayDataElementNames(batchStatistics(cnSet))
## Accessors for linear model parameters
## -- Included here primarily as a check that accessors are working
## -- Values are all NA until CN estimation is performed using the crlmm package
##
## subsetting
cnSet[1:10, ]
## names of elements in the object
## accessors for parameters
nu(cnSet, "A")[1:10, ]
nu(cnSet, "B")[1:10, ]
phi(cnSet, "A")[1:10, ]
phi(cnSet, "B")[1:10, ]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.