findGenes | R Documentation |
Please refer to the file /inst/doc/readme.pdf.
findGenes(g, qlower = NULL, qupper = NULL, pre_ratio = NULL)
g |
Please refer to the file /inst/doc/readme.pdf. |
qlower |
Please refer to the file /inst/doc/readme.pdf. |
qupper |
Please refer to the file /inst/doc/readme.pdf. |
pre_ratio |
Please refer to the file /inst/doc/readme.pdf. |
##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
## The function is currently defined as
function (g, qlower = NULL, qupper = NULL, pre_ratio = NULL)
{
gene_name <- rownames(g)
g <- unlist(g)
seen <- which(g >= qlower & g <= qupper)
counts <- length(seen)
if (counts >= pre_ratio * length(g)) {
gene_name
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.