| summary.bioCond | R Documentation |
bioCond ObjectThe method produces an object that summarizes the data and fit information
of mean-variance dependence (if available) stored in a bioCond
object.
## S3 method for class 'bioCond' summary(object, ...)
object |
A |
... |
Arguments passed from other methods. |
This function implements the summary method for the
"bioCond" class.
The method returns an object of class "summaryBioCond", for
which a specialized print method has been defined.
bioCond for creating a bioCond object.
fitMeanVarCurve for fitting a mean-variance curve on
bioCond objects.
data(H3K27Ac, package = "MAnorm2")
attr(H3K27Ac, "metaInfo")
## Summarize bioConds that correspond to individuals.
# Perform the MA normalization and construct bioConds to represent
# individuals.
norm <- normalize(H3K27Ac, 4, 9)
norm <- normalize(norm, 5:6, 10:11)
norm <- normalize(norm, 7:8, 12:13)
conds <- list(GM12890 = bioCond(norm[4], norm[9], name = "GM12890"),
GM12891 = bioCond(norm[5:6], norm[10:11], name = "GM12891"),
GM12892 = bioCond(norm[7:8], norm[12:13], name = "GM12892"))
autosome <- !(H3K27Ac$chrom %in% c("chrX", "chrY"))
conds <- normBioCond(conds, common.peak.regions = autosome)
# Summarize these bioConds.
summary(conds[[1]])
summary(conds[[2]])
summary(conds[[3]])
str(summary(conds[[3]]))
# Summarize these bioConds after fitting a mean-variance curve for them.
conds <- fitMeanVarCurve(conds, method = "parametric", occupy.only = TRUE)
summary(conds[[1]])
summary(conds[[2]])
summary(conds[[3]])
str(summary(conds[[3]]))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.