Description Usage Arguments Details Value Methods (by class) Author(s) See Also Examples
View source: R/clusterGeneSim.R
Looks for the similarity between genes of a group and then between each group's genes.
1 2 3 4 | clusterGeneSim(cluster1, cluster2, info, method = c("max", "rcmax.avg"), ...)
## S4 method for signature 'character,character,GeneSetCollection'
clusterGeneSim(cluster1, cluster2, info, method = c("max", "rcmax.avg"), ...)
|
cluster1 |
A vector with genes. |
cluster2 |
A vector with genes. |
info |
A GeneSetCollection or a list of genes and the pathways they are involved. |
method |
A vector with two or one argument to be passed to combineScores the first one is used to summarize the similarities of genes, the second one for clusters. |
... |
Other arguments passed to |
Differs with clusterSim that first each combination between genes is calculated, and with this values then the comparison between the two clusters is done. Thus applying combineScores twice, one at gene level and another one at cluster level.
Returns a similarity score between the genes of the two clusters.
cluster1 = character,cluster2 = character,info = GeneSetCollection
: Calculates the gene similarities in a
GeneSetCollection and combine them using combineScoresPar
Llu<c3><ad>s Revilla
mclusterGeneSim
, combineScores
and
clusterSim
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | if (require("org.Hs.eg.db")) {
#Extract the paths of all genes of org.Hs.eg.db from KEGG (last update in
# data of June 31st 2011)
genes.kegg <- as.list(org.Hs.egPATH)
clusterGeneSim(c("18", "81", "10"), c("100", "10", "1"), genes.kegg)
clusterGeneSim(c("18", "81", "10"), c("100", "10", "1"), genes.kegg,
c("avg", "avg"))
clusterGeneSim(c("18", "81", "10"), c("100", "10", "1"), genes.kegg,
c("avg", "rcmax.avg"))
(clus <- clusterGeneSim(c("18", "81", "10"), c("100", "10", "1"),
genes.kegg, "avg"))
combineScores(clus, "rcmax.avg")
} else {
warning('You need org.Hs.eg.db package for this example')
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.