
Manage a set of default parameter settings for sybil.
SYBIL_SETTINGS(parm, value, ...)
A character string giving the name of the parameter to set.
The corresponding value.
Further arguments passed to checkDefaultMethod
. Only used if
parameters "SOLVER"
or "METHOD"
are set.
If successful, a set of parameters to sybil will be returned.
Typical usages are
SYBIL_SETTINGS(parm, value) SYBIL_SETTINGS(parm) SYBIL_SETTINGS()
Possible parameters are:
"SOLVER"
The default solver for lp problems. Possible values are depend on your installed API package.
"glpkAPI"
,
"cplexAPI"
,
"clpAPI"
,
"lpSolveAPI"
.
"glpkAPI"
."METHOD"
The default method to solve lp problems. Possible values are
"simplex"
, "interior"
, "exact"
or mip
.
"lpopt"
, "primopt"
"dualopt"
, "baropt"
,
"hybbaropt"
, "hybnetopt"
, "siftopt"
,
mipopt
or qpopt
.
"general_solve"
, "inidual"
"iniprimal"
,
"inibarrier"
, "inibarriernoc"
, "idiot"
,
"dual"
or "primal"
.
"lp_solve"
.
"simplex"
.
If the parameter "SOLVER"
is changed, the corrsponding default
"METHOD"
is the first one mentioned, e.g. for "cplexAPI"
,
it will be "lpopt"
. This change is done automatically when changing
the solver. It is not possible, to set a not existing "METHOD"
for a particular "SOLVER"
, the corresponding default value will
be used in such a case."MAXIMUM"
Absolute maximum value.
Default: 1000
.
"MODELORG_VERSION"
Currtent version of modelorg
-Class.
Value: "2.0"
.
This value must not be changed.
"ALGORITHM"
Algorithm to use in order to analyze metabolic networks. Possible values are:
"fba"
flux-balance analysis,
"fv"
flux-variance analysis,
"mtf"
minimize total flux,
"moma"
minimization of metabolic adjustment (MOMA),
"lmoma"
linear version of MOMA,
"room"
regulatory on/off minimization (ROOM).
"fba"
."OPT_DIRECTION"
Direction of optimization. Can be "max"
or "min"
.
Default: "max"
.
"USE_NAMES"
A logical value indicating if reaction id's and metabolite id's (or other
names) should be used as names for variables and constraints in objects of
class '>sysBiolAlg
.
Default: FALSE
.
"PATH_TO_MODEL"
Path to a directory to read or write files.
Default: "."
.
"SOLVER_CTRL_PARM"
A data.frame
giving parameters to the optimizer software
(e.g. GLPK).
Default: as.data.frame(NA)
.
"TOLERANCE"
Tolerance value.
Default: 1E-6
.
# NOT RUN {
## show all current parameters
SYBIL_SETTINGS()
## show current setting for "SOLVER"
SYBIL_SETTINGS("SOLVER")
## change current solver to glpkAPI
SYBIL_SETTINGS("SOLVER", "glpkAPI")
# }
# NOT RUN {
## this needs cplexAPI installed
## change current solver to cplexAPI
SYBIL_SETTINGS("SOLVER", "cplexAPI")
# }
Run the code above in your browser using DataLab