findTerm | R Documentation |
Find queried terms in list of gene clusters and return frequency
findTerm(
query,
listOfGenes,
split = FALSE,
ngram = 1,
tfidf = TRUE,
calc = "sum",
keyType = "SYMBOL",
argList = list()
)
query |
query words |
listOfGenes |
named list of genes |
split |
split the query by space, default to FALSE |
ngram |
use ngram or not |
tfidf |
use tfidf when creating TDM or not |
calc |
"sum", "mean" or "highest" |
keyType |
key type of listOfGenes |
argList |
passed to refseq |
Find queried terms in list of gene clusters and return frequency
named list of frequency
query <- "DNA repair"
lg <- list()
lg[["sample"]] <- c("ERCC1","ERCC2")
findTerm(query, lg)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.