Description Objects from the Class Slots Extends Methods Author(s) See Also Examples
A Genomic Dependency model for two data sets
Used to represent individual dependency models for screening inside ChromosomeModels.
middle location of the window in base pairs
name of the gene in the middle of the window
Chromosome where the dependency model is calculated
Chromosome arm where the dependency model is calculated
a list of X, Y and total components containing the relationship between two data sets; for dependency model for one dataset, only total is given
a list of X, Y and total components containing the data set specific covariances; for dependency model for one dataset, only total is given
score for fitness of model
name of the used method
list of parameters used in dependency model
The data used to calculate the dependency model
The latent variable Z
Class DependencyModel directly.
signature(model = "GeneDependencyModel")
: sets models location
signature(model = "GeneDependencyModel")
: sets models gene name
signature(model = "GeneDependencyModel")
: sets models chromosome
signature(model = "GeneDependencyModel")
: sets models chromosome arm
signature(model = "GeneDependencyModel")
: Returns the middle location of the window
signature(model = "GeneDependencyModel")
: Returns the name of the gene in the middle of window
signature(model = "GeneDependencyModel")
: Returns the chromosome
signature(model = "GeneDependencyModel")
: Returns the chromosome arm
signature(model = "GeneDependencyModel")
: Returns the size of window
signature(model = "GeneDependencyModel")
: Calculates the expectation of latent variable Z. The original data
is needed as arguments as given to screen function
Olli-Pekka Huovilainen ohuovila@gmail.com
For calculation of dependency models for chromosomal arm, chromosome or
genome: screen.cgh.mrna
. Dependency models
for whole chromosome: ChromosomeModels. Dependency models
for whole genome: GenomeModels. For plotting dependency
scores see dependency score plotting.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | data(chromosome17)
# First genomic dependency model from screening chromosomal arm
models <- screen.cgh.mrna(geneExp, geneCopyNum, 10, chr=17, arm='p')
model <- models[[1]]
# Printing information of the model
model
# Latent variable Z
getZ(model, geneExp,geneCopyNum)
# Contributions of samples and variables to model
plot(model,geneExp,geneCopyNum)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.