View source: R/default_carnival_options.R
default_carnival_options | R Documentation |
Returns the default CARNIVAL options as a list. You can modify the elements
of the list and then use it as an argument in run_phonemes
.
If you choose CPLEX or CBC, you must modify then the solverPath field and point to
the CPLEX/CBC executable (See Details).
default_carnival_options(solver = NULL)
solver |
one of |
PHONEMeS is dependent on CARNIVAL for exhibiting the signalling pathway optimisation which requires the interactive version of IBM Cplex, Gurobi or CBC-COIN solver as the network optimiser. The IBM ILOG Cplex is freely available through Academic Initiative here. Gurobi license is also free for academics, request a license following instructions here. The CBC solver is open source and freely available for any user, but has a significantly lower performance than CPLEX or Gurobi. Obtain CBC executable directly usable for cosmos here. Alternatively for small networks, users can rely on the freely available lpSolve R-package, which is automatically installed with the package.
returns a list with all possible options implemented in CARNIVAL
# load and change default options:
my_options = default_carnival_options(solver = "cplex")
my_options$solverPath = "/Applications/CPLEX_Studio128/cplex/bin/x86-64_osx/cplex"
my_options$threads = 2
my_options$timelimit = 3600*15
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.