Description Usage Arguments Value References Examples
View source: R/getFunctionWC.R
A function that takes motif "names" in MotifDb format, retrieves corresponding GO functions and produces a word cloud visualization based on function frequency within all specified motifs.
1 | getFunctionWC(matchNames)
|
matchNames |
A character vector indicating Motif "names" (based on MotifDb records) |
Returns functionFreq - A table/list indicating frequency of found functionalities
Hines, K. (2014). Stack Overflow source code [Source code]. https://stackoverflow.com/questions/26937960/creating-word-cloud-of-phrases-not-individual-words-in-r.
1 2 3 4 5 6 7 8 9 10 | data(jaspar.scores, package="MotifFunc")
jaspar.scores
matchNames <- MotifFunc::classifySeqMotifs("AGCGTAGGCGT")
functionFreq <- MotifFunc::getFunctionWC(matchNames)
transfacFilePath <- system.file("extdata", "new0007.txt", package = "MotifFunc")
data(jaspar.scores, package="MotifFunc")
jaspar.scores
matchNames <- MotifFunc::classifyPcmMotifs(transfacFilePath)
functionFreq <- MotifFunc::getFunctionWC(matchNames)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.