solve.Bicor: Run the Bicor Solver

run,BicorSolver-methodR Documentation

Run the Bicor Solver

Description

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

Usage

## S4 method for signature 'BicorSolver'
run(obj)

Arguments

obj

An object of class BicorSolver

Value

The set of Bicor Correlation Coefficients between each transcription factor and the target gene.

See Also

cor, BicorSolver

Other solver methods: run,EnsembleSolver-method, run,LassoPVSolver-method, run,LassoSolver-method, run,PearsonSolver-method, run,RandomForestSolver-method, run,RidgeSolver-method, run,SpearmanSolver-method, run,XGBoostSolver-method

Examples

# Load included Alzheimer's data, create a TReNA object with Bayes Spike 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)
bicor.solver <- BicorSolver(mtx.sub, target.gene, tfs)
tbl <- run(bicor.solver)

PriceLab/TReNA documentation built on March 21, 2023, 1:57 p.m.