impScores.hc: Importance scores

Description Usage Arguments Value Author(s) References See Also Examples

Description

Given the clusters, the importance score of each feature is calculated. This is defined as the maximum pairwise symmetrized Kullback Leibler divergence. These scores reflect which features are most discriminative between clusters.

Usage

1
impScores.hc(cghdata.regioned, dendrogram, nclusters)

Arguments

cghdata.regioned

A list-object as returned by the function regioning.

dendrogram

Determines if and how the row dendrogram should be computed and reordered. Should be a dendrogram as returned by WECCA.hc.

nclusters

An integer with the desired number of clusters.

Value

A matrix whose first five columns contain annotation information and the sixth the region's importance score.

Author(s)

Wessel N. van Wieringen: w.vanwieringen@vumc.nl

References

Insert ref to article where importance scores are calculated.

See Also

KLdiv, regioning, WECCAhc

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
# generate object of class
data(WiltingCalled)

# make region data (soft and hard calls)
WiltingRegioned <- regioning(WiltingCalled)

# clustering with soft.calls
dendrogram <- WECCAhc(WiltingRegioned)

# generate a heatmap of the found clustering
WECCA.heatmap(WiltingRegioned, dendrogram)

# specify the number of clusters to be extracted from the dendrogram
nclusters <- 2
table.clusters.samples <- sample.cluster.table(WiltingRegioned, dendrogram, nclusters)

# calculate importance scores for each feature
impScores.table <- impScores.hc(WiltingRegioned, dendrogram, nclusters)

tgac-vumc/WECCA documentation built on May 31, 2019, 9 a.m.