Description Usage Arguments Value Methods (by generic) See Also Examples
Class TReNA
defines a TReNA object and contains an assay matrix, which contains expression data over a set of
samples for a group of genes, and a string representing the name of a chosen solver.
1 2 3 4 5 6 7 | TReNA(mtx.assay = matrix(), solver = "lasso", quiet = TRUE)
## S4 method for signature 'TReNA'
getSolverName(obj)
## S4 method for signature 'TReNA'
getSolverObject(obj)
|
mtx.assay |
An assay matrix of gene expression data |
solver |
A string matching the designated solver for relating a target gene to transcription factors. TReNA currently supports 9 solver strings (default = "lasso"):
|
quiet |
A logical denoting whether or not the TReNA object should print output |
obj |
An object of class TReNA |
An object of the TReNA class
getSolverName
: Retrieve the name of the solver specified in a TReNA object
getSolverObject
: Retrieve the Solver object contained in a TReNA object
solve
, Solver
, getSolverName
, getSolverObject
1 2 3 4 5 6 7 8 9 | # Create a LassoSolver object using the included Alzheimer's data and retrieve the solver name
load(system.file(package="TReNA", "extdata/ampAD.154genes.mef2cTFs.278samples.RData"))
solver <- TReNA(mtx.sub, solver = "lasso")
mtx <- getSolverName(solver)
# Create a LassoSolver object using the included Alzheimer's data and retrieve the solver object
load(system.file(package="TReNA", "extdata/ampAD.154genes.mef2cTFs.278samples.RData"))
solver <- TReNA(mtx.sub, solver = "lasso")
mtx <- getSolverObject(solver)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.