Description Usage Arguments Value Methods (by generic) Slots See Also Examples
A CandidateFilter is an S4 class to represent a gene candidate filter. These filters can employ a variety of methods to reduce the number of transcription factors used as predictors for solving a TReNA object.
1 2 3 4 | CandidateFilter(mtx.assay = matrix(), quiet = TRUE)
## S4 method for signature 'CandidateFilter'
getFilterAssayData(obj)
|
mtx.assay |
An assay matrix of gene expression data |
quiet |
A logical denoting whether or not the CandidateFilter object should print output |
obj |
An object of a CandidateFilter class |
An object of the Candidate filter class
getFilterAssayData
: Retrieve the assay matrix of gene expression data
mtx.assay
An assay matrix of gene expression data
quiet
A logical denoting whether or not the CandidateFilter object should print output
getCandidates
, getFilterAssayData
1 2 3 4 5 6 7 | # Create an empty candidate filter
candidate.filter <- CandidateFilter(mtx.assay = matrix(), quiet=TRUE)
# Create a CandidateFilter object using the included Alzheimer's data and retrieve the matrix
load(system.file(package="TReNA", "extdata/ampAD.154genes.mef2cTFs.278samples.RData"))
my.filter <- CandidateFilter(mtx.sub)
mtx <- getFilterAssayData(my.filter)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.