Description Usage Arguments Value See Also Examples
A TReNA object contains an assay matrix with expression data for genes of interest and a string
representing the chosen solver. The solve
method runs the specified solver given a target
gene and a designated set of transcription factors, returning a list of parameters that quantify
the relationship between the transcription factors and the target gene.
1 2 3 |
obj |
An object of class TReNA |
target.gene |
A designated target gene that should be part of the mtx.assay data |
tfs |
The designated set of transcription factors that could be associated with the target gene. |
tf.weights |
A set of weights on the transcription factors (default = rep(1, length(tfs))) |
extraArgs |
Modifiers to the solver |
A data frame containing coefficients relating the target gene to each transcription factor
Other solver methods: run,BayesSpikeSolver-method
,
run,EnsembleSolver-method
,
run,LassoPVSolver-method
,
run,LassoSolver-method
,
run,PearsonSolver-method
,
run,RandomForestSolver-method
,
run,RidgeSolver-method
,
run,SpearmanSolver-method
,
run,SqrtLassoSolver-method
1 2 3 4 5 6 | # Load included Alzheimer's data, create a TReNA object with LASSO as the solver, and solve
load(system.file(package="TReNA", "extdata/ampAD.154genes.mef2cTFs.278samples.RData"))
trena <- TReNA(mtx.assay = mtx.sub, solver = "lasso")
target.gene <- "MEF2C"
tfs <- setdiff(rownames(mtx.sub), target.gene)
tbl <- solve(trena, target.gene, tfs)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.