clusterSim | R Documentation |
Given two gene clusters, this function calculates semantic similarity between them.
clusterSim(
cluster1,
cluster2,
semData,
measure = "Wang",
drop = "IEA",
combine = "BMA"
)
cluster1 |
A set of gene IDs. |
cluster2 |
Another set of gene IDs. |
semData |
GOSemSimDATA object |
measure |
One of "Resnik", "Lin", "Rel", "Jiang", "TCSS" and "Wang" methods. |
drop |
A set of evidence codes based on which certain annotations are dropped. Use NULL to keep all GO annotations. |
combine |
One of "max", "avg", "rcmax", "BMA" methods, for combining semantic similarity scores of multiple GO terms associated with protein or multiple proteins assiciated with protein cluster. |
similarity
Yu et al. (2010) GOSemSim: an R package for measuring semantic similarity among GO terms and gene products Bioinformatics (Oxford, England), 26:7 976–978, April 2010. ISSN 1367-4803 http://bioinformatics.oxfordjournals.org/cgi/content/abstract/26/7/976 PMID: 20179076
goSim
mgoSim
geneSim
mgeneSim
mclusterSim
d <- godata('org.Hs.eg.db', ont="MF", computeIC=FALSE)
cluster1 <- c("835", "5261","241", "994")
cluster2 <- c("307", "308", "317", "321", "506", "540", "378", "388", "396")
clusterSim(cluster1, cluster2, semData=d, measure="Wang")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.