summary_Aclustering | R Documentation |
This function creates a table that summarizes A-clustering result.
summary_Aclustering(clusters.list, annot)
clusters.list |
A list of clusters with CpG sites, each item is a cluster that contains a set of probes |
annot |
A preloaded annotation file that includes columns the below name. For more information, IlluminaHumanMethylation450kanno.ilmn12.hg19.
|
The function returns a table of summary characteristics:
Total number of sites used for the analysis
Number of singletons (a cluster with one CpG site)
Number of clusters (a cluster with at least two sites)
Number of CpG sites that are clustered
Number of CpG sites in cluster (min, median, max)
Base-pair distance between extremes (min, median, max)
(1) Clusters associated with a single refernece gene
(2) Clusters associated with a single CpG Island
(3) Number of resort regions each cluster is associated with (min, median, max)
(3-1) Clusters associated with a CpG resort : at least one resort regions
(3-2) Clusters associated with a CpG resort : at least two resort regions
data(annot) data(sample.data) DATA.Y <- sample.data$DATA.Y # row: subjects (n), column: CpG sites (q) all.clusters.list <- Aclust::assign.to.clusters(betas = t(DATA.Y),annot = annot, dist.type = "spearman", method = "average", thresh.dist = 0.2,max.dist = 1000,bp.thresh.dist = 999) summary_Aclustering(clusters.list=all.clusters.list,annot=annot)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.