Description Usage Arguments Value See Also Examples
Get candidate genes using the variance filter
1 2 | ## S4 method for signature 'VarianceFilter'
getCandidates(obj, extraArgs)
|
obj |
An object of class VarianceFilter |
extraArgs |
A named list containing two fields:
|
A vector containing all genes with variances less than the target gene
Other getCandidate Methods: getCandidates,FootprintFilter-method
,
getCandidates,NullFilter-method
,
getCandidates
1 2 3 4 5 6 7 | # Using the included Alzheimer's dataset, filter out only those transcription factors with variance
# within 50% of the variance of MEF2C
load(system.file(package="TReNA", "extdata/ampAD.154genes.mef2cTFs.278samples.RData"))
variance.filter <- VarianceFilter(mtx.assay = mtx.sub)
target.gene <- "MEF2C"
tfs <- getCandidates(variance.filter, extraArgs = list("target.gene" = target.gene, "var.size" = 0.5))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.