Given a LassoSolver object, use the glmnet function to estimate coefficients for each transcription factor as a predictor of the target gene's expression level.

# S4 method for LassoSolver
run(obj)

Arguments

obj

An object of class LassoSolver

Value

A data frame containing the coefficients relating the target gene to each transcription factor, plus other fit parameters.

See also

Examples

# Load included Alzheimer's data, create a TReNA object with LASSO as solver, and solve load(system.file(package="trena", "extdata/ampAD.154genes.mef2cTFs.278samples.RData")) target.gene <- "MEF2C" tfs <- setdiff(rownames(mtx.sub), target.gene) lasso.solver <- LassoSolver(mtx.sub, target.gene, tfs) tbl <- run(lasso.solver)