diff --git a/stable/modules/analysis/FBA/index.html b/stable/modules/analysis/FBA/index.html index cb80e0f760..714f171a11 100644 --- a/stable/modules/analysis/FBA/index.html +++ b/stable/modules/analysis/FBA/index.html @@ -335,7 +335,7 @@

The COBRA Toolbox

OPTIONAL INPUTS
-
USAGE
-
-
+

Example

+

Obtain all reactions with Glycolysis in their respective subSystems +field. +[reactionNames,rxnPos] = findRxnsFromSubSystem(model,’Glycolysis’)

@@ -1161,7 +1159,7 @@

The COBRA Toolbox

USAGE
@@ -1218,12 +1216,12 @@

The COBRA Toolbox

Determine whether a reaction is in a given subSystem.

USAGE
-

[subSystems] = getModelSubSystems (model)

+

[present] = isReactionInSubSystem (model,reactions,subSystem)

INPUT
  • model – A COBRA model struct with at least rxns and -subSystems fields

  • +subSystems or rxn2subSystem(COBRA V4) fields

  • reactions – Either a string identifying a reaction, or a cell array of strings identifying multiple reactions, or a double vector identifying the @@ -1234,12 +1232,6 @@

    The COBRA Toolbox

    OUTPUT

    present – a boolean vector for each provided reaction.

    -
    USAGE
    -
      -
    • %Get all subSystems present in the model.

    • -
    • [subSystems] = getModelSubSystems (model)

    • -
    -
diff --git a/stable/modules/analysis/index.html b/stable/modules/analysis/index.html index f8d3e97859..448a3c1ec9 100644 --- a/stable/modules/analysis/index.html +++ b/stable/modules/analysis/index.html @@ -353,6 +353,7 @@

Analysis
  • Wholebody diff --git a/stable/modules/analysis/sampling/BarrierRound/PolytopeSimplifier/index.html b/stable/modules/analysis/sampling/BarrierRound/PolytopeSimplifier/index.html index b008d25a3e..157fc850db 100644 --- a/stable/modules/analysis/sampling/BarrierRound/PolytopeSimplifier/index.html +++ b/stable/modules/analysis/sampling/BarrierRound/PolytopeSimplifier/index.html @@ -434,20 +434,30 @@

    The COBRA Toolbox

    -class TwoSidedBarrier(lb, ub)[source]
    +class TwoSidedBarrier(lb, ub, vdim)[source]

    The log barrier for the domain {lu <= x <= ub}: phi(x) = - sum log(x - lb) - sum log(ub - x).

    -TwoSidedBarrier(lb, ub)[source]
    -

    Construct a barrier with lower bound lb and upper bound ub.

    +TwoSidedBarrier(lb, ub, vdim)[source] +

    o.update(lb, ub) +Update the bounds lb and ub.

    -boundary(o, x, blocks)[source]
    -

    [idx, b] = o.boundary(x, blocks) -Output the boundary value of each block and their cooresponding indices

    +boundary(o, x)[source] +

    [A, b] = o.boundary(x) +Output the normal at the boundary around x for each barrier. +Assume: only 1 vector is given

    +
    + +
    +
    +boundary_distance(o, x)[source]
    +

    v = o.boundary_distance(x) +Output the distance of x with its closest boundary for each +coordinate

    @@ -456,28 +466,44 @@

    The COBRA Toolbox

    Some feasible point x

    +
    +
    +extraHessian[source]
    +

    Extra factor added when computing Hessian. Used to handle free constraints.

    +
    + +
    +
    +feasible(o, x)[source]
    +

    r = o.feasible(x) +Output if x is feasible.

    +
    + +
    +
    +freeIdx[source]
    +

    Indices that ub == Inf and lb == -Inf

    +
    +
    -
    -derivatives(o, x)[source]
    -

    [g, h, t] = o.derivatives(x) -Output the gradient, Hessian and the third derivative of phi(x).

    +
    +gradient(o, x)[source]
    +

    g = o.gradient(x) +Output gradient phi(x).

    -
    -distance(o, x, v)[source]
    -

    t = o.distance(x) -Output the distance of x with its closest boundary for each coordinate -Any negative entries implies infeasible

    -

    t = o.distance(x, v) -Output the maximum step from x with direction v for each coordinate

    +
    +hessian(o, x)[source]
    +

    g = o.hessian(x) +Output Hessian phi(x).

    -
    -feasible(o, x)[source]
    -

    t = o.feasible(x) -Output if x is feasible

    +
    +hessian_norm(o, x, d)[source]
    +

    v = o.hessian_norm(x, d) +Output d_i (hess phi(x))_ii d_i for each i

    @@ -486,6 +512,20 @@

    The COBRA Toolbox

    lb

    +
    +
    +logdet_gradient(o, x)[source]
    +

    v = o.logdet_gradient(x) +Output the gradient of log det (hess phi(x)) +which is (hess phi(x))^-1 (grad hess phi (x))

    +
    + +
    +
    +lowerIdx[source]
    +

    Indices that ub == Inf

    +
    +
    n[source]
    @@ -493,21 +533,37 @@

    The COBRA Toolbox

    -
    -remove(x, blocks)[source]
    -

    Remove the blocks from the barrier

    +
    +quadratic_form_gradient(o, x, u)[source]
    +

    v = o.quadratic_form_gradient(x, u) +Output the -grad of u’ (hess phi(x)) u.

    -
    -rescale(scale)[source]
    -

    Rescale lb = lb .* scale, ub = ub .* scale

    +
    +set_bound(lb, ub)[source]
    +

    Update the bounds lb and ub.

    -
    -set(lb, ub)[source]
    -

    Update the bounds lb and ub.

    +
    +set_vdim(o, vdim)[source]
    +

    o.set_bound(lb, ub) +Update the dimension dim.

    +
    + +
    +
    +step_size(o, x, v)[source]
    +

    t = o.stepsize(x, v) +Output the maximum step size from x with direction v.

    +
    + +
    +
    +tensor(o, x)[source]
    +

    g = o.tensor(x) +Output the third derivative of phi(x).

    @@ -516,6 +572,18 @@

    The COBRA Toolbox

    ub

    +
    +
    +upperIdx[source]
    +

    Indices that lb == -Inf

    +
    + +
    +
    +vdim[source]
    +

    Each point is stored along the dimension vdim

    +
    +
    diff --git a/stable/modules/analysis/thermo/inchi/old/index.html b/stable/modules/analysis/thermo/inchi/old/index.html index bb7119d315..13d0a7eeec 100644 --- a/stable/modules/analysis/thermo/inchi/old/index.html +++ b/stable/modules/analysis/thermo/inchi/old/index.html @@ -307,24 +307,16 @@

    The COBRA Toolbox

    -getFormulaAndChargeFromInChI(InChI)[source]
    -

    Extracts the chemical formula of a given compound from -the InChI string provided

    -
    -
    USAGE
    -

    [formula, protons] = getFormulaFromInChI (InChI)

    -
    -
    INPUT
    -

    InChI – The Inchi String of the chemical formula (e.g. InChI= -extract formula from InChI = 1S/C3H4O3/c1-2(4)3(5)6/h1H3, (H,5,6)/p-1 for pyruvate

    -
    -
    OUTPUTS
    -
      -
    • formula – The chemical formula (including the protonation state

    • -
    • protons – The total number of protons

    • -
    -
    -
    +getFormulaAndChargeFromInChI(inchi)[source] +

    [formula,charge] = getFormulaAndChargeFromInChI(inchi)

    +

    INPUT +inchi…….Nonstandard IUPAC InChI for a particular pseudoisomer of a

    +
    +

    metabolite

    +
    +

    OUTPUTS +formula….The chemical formula for the input pseudoisomer +charge…..The charge on the input pseudoisomer

    diff --git a/stable/modules/analysis/topology/extremeRays/lrs/lrsInterface/index.html b/stable/modules/analysis/topology/extremeRays/lrs/lrsInterface/index.html index 25d52b8dfe..f92cb57106 100644 --- a/stable/modules/analysis/topology/extremeRays/lrs/lrsInterface/index.html +++ b/stable/modules/analysis/topology/extremeRays/lrs/lrsInterface/index.html @@ -265,6 +265,58 @@

    The COBRA Toolbox

    Lrsinterface

    +
    +lrsInputHalfspace(A, D, filename, positivity, inequality, a, d, f, sh)[source]
    +

    Outputs a file for lrs to convert an H-representation (half-space) of a +polyhedron to a V-representation (vertex / ray) via vertex enumeration

    +
    +
    USAGE
    +

    lrsInputHalfspace (A, D, filename, positivity, inequality, a, d, f, sh)

    +
    +
    INPUTS
    +
      +
    • A – matrix of linear equalities \(A x =(a)\)

    • +
    • D – matrix of linear inequalities \(D x \geq (d)\)

    • +
    • filename – base name of output file

    • +
    +
    +
    OPTIONAL INPUTS
    +
      +
    • positivity – {0, (1)} if positivity == 1, then positive orthant base

    • +
    • inequality – {0, (1)} if inequality == 1, then use two inequalities rather than a single equaltiy

    • +
    • a – boundary values for matrix of linear equalities \(A x = a\)

    • +
    • d – boundary values for matrix of linear inequalities \(D x \geq d\)

    • +
    • f – linear objective for a linear optimization problem in rational arithmetic

      +

      minimise \(f^T x\), +subject to \(A x = (a)\), \(D x \geq (d)\)

      +
    • +
    • sh – {(0), 1} if sh == 1, output a shell script for submitting qsub job

    • +
    +
    +
    +
    + +
    +
    +lrsOutputReadRay(filename)[source]
    +

    Reads into matlab a vertex representation output from lrs

    +
    +
    USAGE
    +

    [R, V] = lrsOutputReadRay (filename)

    +
    +
    INPUT
    +

    filename – name of .ext file from lrs

    +
    +
    OUTPUT
    +
      +
    • RnDim by nRay matrix of extreme rays

    • +
    • VnDim by nVertex matrix of vertices

    • +
    +
    +
    +
    + +
    lrsReadHalfspace(modelName, param)[source]

    Read in a halfspace representation (*.ine) of a polytope derived from lrs diff --git a/stable/modules/analysis/wholeBody/Nutrition_Modelling_Toolbox/index.html b/stable/modules/analysis/wholeBody/Nutrition_Modelling_Toolbox/index.html index 2f28eb0598..006429649c 100644 --- a/stable/modules/analysis/wholeBody/Nutrition_Modelling_Toolbox/index.html +++ b/stable/modules/analysis/wholeBody/Nutrition_Modelling_Toolbox/index.html @@ -191,6 +191,7 @@

    The COBRA Toolbox

  • Rmta
  • Deletion
  • Wholebody diff --git a/stable/modules/analysis/wholeBody/PSCMToolbox/BMRcalculations/index.html b/stable/modules/analysis/wholeBody/PSCMToolbox/BMRcalculations/index.html index e2068faa2c..46b4716763 100644 --- a/stable/modules/analysis/wholeBody/PSCMToolbox/BMRcalculations/index.html +++ b/stable/modules/analysis/wholeBody/PSCMToolbox/BMRcalculations/index.html @@ -191,6 +191,7 @@

    The COBRA Toolbox

  • Rmta
  • Deletion
  • Wholebody
      +
    • Io
    • Pscmtoolbox
      • Bmrcalculations
      • Io
      • diff --git a/stable/modules/analysis/wholeBody/PSCMToolbox/hostMicrobeInteraction/index.html b/stable/modules/analysis/wholeBody/PSCMToolbox/hostMicrobeInteraction/index.html index 44db8e0032..551d230d9a 100644 --- a/stable/modules/analysis/wholeBody/PSCMToolbox/hostMicrobeInteraction/index.html +++ b/stable/modules/analysis/wholeBody/PSCMToolbox/hostMicrobeInteraction/index.html @@ -191,6 +191,7 @@

        The COBRA Toolbox

      • Rmta
      • Deletion
      • Wholebody
          +
        • Io
        • Pscmtoolbox
          • Bmrcalculations
          • Io
          • diff --git a/stable/modules/analysis/wholeBody/PSCMToolbox/index.html b/stable/modules/analysis/wholeBody/PSCMToolbox/index.html index 6c06fad6af..50fed9fd16 100644 --- a/stable/modules/analysis/wholeBody/PSCMToolbox/index.html +++ b/stable/modules/analysis/wholeBody/PSCMToolbox/index.html @@ -70,7 +70,7 @@ - + @@ -191,6 +191,7 @@

            The COBRA Toolbox

          • Rmta
          • Deletion
          • Wholebody
              +
            • Io
            • Pscmtoolbox
              • Bmrcalculations
              • Io
              • @@ -985,7 +986,7 @@

                The COBRA Toolbox

                - + diff --git a/stable/modules/analysis/wholeBody/PSCMToolbox/io/index.html b/stable/modules/analysis/wholeBody/PSCMToolbox/io/index.html index 70c7284f49..a3110c44bc 100644 --- a/stable/modules/analysis/wholeBody/PSCMToolbox/io/index.html +++ b/stable/modules/analysis/wholeBody/PSCMToolbox/io/index.html @@ -191,6 +191,7 @@

                The COBRA Toolbox

              • Rmta
              • Deletion
              • Wholebody
                  +
                • Io
                • Pscmtoolbox
                  • Bmrcalculations
                  • Io
                  • diff --git a/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/diets/index.html b/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/diets/index.html index c165cd9737..a888effc53 100644 --- a/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/diets/index.html +++ b/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/diets/index.html @@ -191,6 +191,7 @@

                    The COBRA Toolbox

                  • Rmta
                  • Deletion
                  • Wholebody
                      +
                    • Io
                    • Pscmtoolbox
                      • Bmrcalculations
                      • Io
                      • diff --git a/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/index.html b/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/index.html index 078183605f..f63d6a7e06 100644 --- a/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/index.html +++ b/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/index.html @@ -191,6 +191,7 @@

                        The COBRA Toolbox

                      • Rmta
                      • Deletion
                      • Wholebody
                          +
                        • Io
                        • Pscmtoolbox
                          • Bmrcalculations
                          • Io
                          • diff --git a/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/inputData/index.html b/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/inputData/index.html index 4b2d62d26a..b76fa538de 100644 --- a/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/inputData/index.html +++ b/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/inputData/index.html @@ -191,6 +191,7 @@

                            The COBRA Toolbox

                          • Rmta
                          • Deletion
                          • Wholebody
                              +
                            • Io
                            • Pscmtoolbox
                              • Bmrcalculations
                              • Io
                              • diff --git a/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/organWeight/index.html b/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/organWeight/index.html index 1cc844f888..42c812ac5f 100644 --- a/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/organWeight/index.html +++ b/stable/modules/analysis/wholeBody/PSCMToolbox/setConstraints/organWeight/index.html @@ -191,6 +191,7 @@

                                The COBRA Toolbox

                              • Rmta
                              • Deletion
                              • Wholebody
                                  +
                                • Io
                                • Pscmtoolbox
                                  • Bmrcalculations
                                  • Io
                                  • diff --git a/stable/modules/analysis/wholeBody/index.html b/stable/modules/analysis/wholeBody/index.html index f060b717b1..8ac9fea848 100644 --- a/stable/modules/analysis/wholeBody/index.html +++ b/stable/modules/analysis/wholeBody/index.html @@ -69,7 +69,7 @@ - + @@ -191,6 +191,7 @@

                                    The COBRA Toolbox

                                  • Rmta
                                  • Deletion
                                  • Wholebody @@ -254,6 +255,7 @@

                                    The COBRA Toolbox

                                    Wholebody

                                      +
                                    • Io
                                    • Pscmtoolbox
                                      • Bmrcalculations
                                      • Io
                                      • @@ -281,7 +283,7 @@

                                        The COBRA Toolbox

  • OUTPUTS
    diff --git a/stable/modules/base/solvers/NLP/index.html b/stable/modules/base/solvers/NLP/index.html index 8cb97e69df..4e3d7fe959 100644 --- a/stable/modules/base/solvers/NLP/index.html +++ b/stable/modules/base/solvers/NLP/index.html @@ -162,9 +162,9 @@

    The COBRA Toolbox

  • Paths
  • Ci
  • Solvers
  • diff --git a/stable/modules/base/solvers/cardOpt/index.html b/stable/modules/base/solvers/cardOpt/index.html index 05d7458767..5558fb13c0 100644 --- a/stable/modules/base/solvers/cardOpt/index.html +++ b/stable/modules/base/solvers/cardOpt/index.html @@ -70,7 +70,7 @@ - + @@ -162,9 +162,9 @@

    The COBRA Toolbox

  • Paths
  • Ci
  • Solvers
      -
    • Msk
    • Rescale
    • Param
    • +
    • Gurobi
    • Cardopt
    • @@ -265,7 +266,7 @@

      The COBRA Toolbox

      - + diff --git a/stable/modules/base/solvers/cardOpt/smoothConcave/index.html b/stable/modules/base/solvers/cardOpt/smoothConcave/index.html index e9aee2d72b..6d2857c18b 100644 --- a/stable/modules/base/solvers/cardOpt/smoothConcave/index.html +++ b/stable/modules/base/solvers/cardOpt/smoothConcave/index.html @@ -162,9 +162,9 @@

      The COBRA Toolbox

    • Paths
    • Ci
    • Solvers
        -
      • Msk
      • Rescale
      • Param
      • +
      • Gurobi
      • Cardopt
      • diff --git a/stable/modules/base/solvers/cardOpt/sparseLP/index.html b/stable/modules/base/solvers/cardOpt/sparseLP/index.html index de80eef729..9b7f0095a2 100644 --- a/stable/modules/base/solvers/cardOpt/sparseLP/index.html +++ b/stable/modules/base/solvers/cardOpt/sparseLP/index.html @@ -162,9 +162,9 @@

        The COBRA Toolbox

      • Paths
      • Ci
      • Solvers
          -
        • Msk
        • Rescale
        • Param
        • +
        • Gurobi
        • Cardopt
          • Smoothconcave
          • Sparselp
          • diff --git a/stable/modules/base/solvers/cardOpt/sparseLP/old/index.html b/stable/modules/base/solvers/cardOpt/sparseLP/old/index.html index 783bcc3794..c819c1f5de 100644 --- a/stable/modules/base/solvers/cardOpt/sparseLP/old/index.html +++ b/stable/modules/base/solvers/cardOpt/sparseLP/old/index.html @@ -162,9 +162,9 @@

            The COBRA Toolbox

          • Paths
          • Ci
          • Solvers
              -
            • Msk
            • Rescale
            • Param
            • +
            • Gurobi
            • Cardopt
              • Smoothconcave
              • Sparselp
              • diff --git a/stable/modules/base/solvers/cplex/index.html b/stable/modules/base/solvers/cplex/index.html index c0977d8cff..5c15dc2cc5 100644 --- a/stable/modules/base/solvers/cplex/index.html +++ b/stable/modules/base/solvers/cplex/index.html @@ -162,9 +162,9 @@

                The COBRA Toolbox

              • Paths
              • Ci
              • Solvers
              • diff --git a/stable/modules/base/solvers/entropicFBA/index.html b/stable/modules/base/solvers/entropicFBA/index.html index 315c48a582..dcc9825586 100644 --- a/stable/modules/base/solvers/entropicFBA/index.html +++ b/stable/modules/base/solvers/entropicFBA/index.html @@ -162,9 +162,9 @@

                The COBRA Toolbox

              • Paths
              • Ci
              • Solvers
              • @@ -287,8 +288,10 @@

                The COBRA Toolbox

                entropicFluxBalanceAnalysis(model, param)[source]
                -

                TBC -minimize g.*vf’*(log(vf) -1) + (cf + ci)’*vf +

                Entropy maximisation of fluxes (or fluxes and concentrations) subject to +mass balance, optionally coupling constraints, optionally quadratic +penalisation of deviation from given fluxes.

                +

                minimize g.*vf’*(log(vf) -1) + (cf + ci)’*vf vf,vr,w,x,x0 + g.*vr’*(log(vr) -1) + (cr - ci)’*vr

                  @@ -393,7 +396,7 @@

                  The COBRA Toolbox

                  model.SConsistentRxnBool: n x 1 boolean indicating stoichiometrically consistent metabolites

                  param.solver: {(‘pdco’),’mosek’} -param.method: {(‘fluxes’),’fluxConc’)} maximise entropy of fluxes or also concentrations +param.entropicFBAMethod: {(‘fluxes’),’fluxConc’)} maximise entropy of fluxes or also concentrations param.printLevel: {(0),1}

                  @@ -438,20 +441,6 @@

                  The COBRA Toolbox

                  Author(s): Ronan M.T. Fleming 2021

                -
                -
                -mosekParamSetEFBA(param)[source]
                -

                creates a structure of pertinent user defined options for MOSEK -OUTPUT -param parameter structure to be passed to the MOSEK solver

                -
                - -
                -
                -mosekParamStrip(solverParams)[source]
                -

                Remove non-modek parameters to avoid crashing solver interface

                -
                -
                processConcConstraints(model, param)[source]
                @@ -483,8 +472,7 @@

                The COBRA Toolbox

                model.dcl: m x 1 real valued lower bound on difference between final and initial molecular concentrations (default -inf) model.dcu: m x 1 real valued upper bound on difference between final and initial initial molecular concentrations (default inf) model.gasConstant: scalar gas constant (default 8.31446261815324 J K^-1 mol^-1) -model.temperature: scalar temperature (default 310.15 Kelvin)

                -

                param.method: ‘fluxConc’ +model.temperature: scalar temperature (default 310.15 Kelvin) param.maxConc: (1e4) maximim micromolar concentration allowed param.maxConc: (1e-4) minimum micromolar concentration allowed param.externalNetFluxBounds: (‘original’) =

                @@ -550,7 +538,7 @@

                The COBRA Toolbox

                param.printLevel: param.solver: {‘pdco’,(‘mosek’)} param.debug: {(0),1} 1 = run in debug mode -param.method: {(‘fluxes’),’fluxesConcentrations’} maximise entropy of fluxes (default) or also concentrations +param.entropicFBAMethod: {(‘fluxes’),’fluxesConcentrations’} maximise entropy of fluxes (default) or also concentrations param.maxUnidirectionalFlux: maximum unidirectional flux (1e5 by default) param.minUnidirectionalFlux: minimum unidirectional flux (zero by default) param.internalNetFluxBounds: (‘original’) = use model.lb and model.ub to set the direction and magnitude of internal net flux bounds

                @@ -611,7 +599,7 @@

                The COBRA Toolbox

                USAGE
                -

                solution = solveCobraEP (EPproblem, varargin)

                +

                sol = solveCobraEP (EPproblem, varargin)

                INPUT

                EPproblem

                @@ -700,43 +688,40 @@

                The COBRA Toolbox

                optTol: Optimality tolerance

                OUTPUT
                -

                solution – Structure containing the following fields describing a LP solution: -* .obj: Objective value -*.objLinear osense*c’*x; -*.objEntropy d.*x’*(log(x) -1); -*.objQuadratic (1/2)*x’*Q*x; -* .full: Primal solution vector -* .slack: bl = A*x + s = bu -* .rcost: Reduced costs, dual solution to \(lb <= x <= ub\) -* .dual: dual solution to constraints :math: A*x (‘E’ | ‘G’ | ‘L’) b

                +

                sol – Structure containing the following fields describing a LP sol: +*.obj: Objective value +*.objLinear osense*c’*x; +*.objEntropy d.*x’*(log(x) -1); +*.objQuadratic (1/2)*x’*Q*x; +*.v: n+k ×1 double +*.vf: n × 1 double +*.vr: n × 1 double +*.vt: 1’*vt + 1’*vr +*.y_N: m x 1 double dual sol to constraints :math: A*x (‘E’ | ‘G’ | ‘L’) b +*.z_dx: 0 +*.z_vf: n × 1 double dual sol to \(lb <= vr <= ub\) +*.z_vr: n × 1 double dual sol to \(lb <= vf <= ub\) +*.z_vi: n × 1 double dual sol to \(lb <= v <= ub\) +*.z_v: n + k × 1 double dual sol to \(lb <= w <= ub\) +* .stat: Solver status in standardized form

                +
                +
                  +
                • 0 - Infeasible problem

                • +
                • 1 - Optimal sol

                • +
                • 2 - Unbounded sol

                • +
                • 3 - Almost optimal sol

                • +
                • -1 - Some other problem (timelimit, numerical problem etc)

                • +
                +
                  -
                • .solver: Solver used to solve EP problem

                • -
                • .stat: Solver status in standardized form -* 0 - Infeasible problem -* 1 - Optimal solution -* 2 - Unbounded solution -* 3 - Almost optimal solution -* -1 - Some other problem (timelimit, numerical problem etc)

                • .origStat: Original status returned by the specific solver

                • .origStatText: Original status text returned by the specific solver

                • .time: Solve time in seconds

                • +
                • .solver: Solver used to solve EP problem

                • +
                • .epmethod: solver method used e.g. ‘CONIC’

                -
                -
                OPTIONAL OUTPUT (from conic optimisation with mosek):

                solution.auxPrimal: auxiliary primal variable -solution.auxRcost: dual to auxiliary primal variable -solution.coneF: affine constraint matrix -solution.coneDual: dual to affine constraints -solution.dualNorm: dual to the probability normalisation constraint

                -
                -
                OPTIONAL OUTPUT (from optimisation with pdco):

                solution.d1: primal regularisation parameter, see pdco.m -solution.d2: dual regularisation parameter, see pdco.m

                -
                -
                -

                EXAMPLE:

                -

                NOTE: This code is a draft version released for the ELIXIR Fluxomic course and is not yet published and not to be redistributed without express permission of the author.

                -

                Author(s): Ronan M.T. Fleming, 2021

  • diff --git a/stable/modules/base/solvers/gams/index.html b/stable/modules/base/solvers/gams/index.html index fa44e62479..98d854a6bf 100644 --- a/stable/modules/base/solvers/gams/index.html +++ b/stable/modules/base/solvers/gams/index.html @@ -162,9 +162,9 @@

    The COBRA Toolbox

  • Paths
  • Ci
  • Solvers
  • diff --git a/stable/modules/base/solvers/getSetSolver/index.html b/stable/modules/base/solvers/getSetSolver/index.html index 014494f23e..3a7eb2b60b 100644 --- a/stable/modules/base/solvers/getSetSolver/index.html +++ b/stable/modules/base/solvers/getSetSolver/index.html @@ -162,9 +162,9 @@

    The COBRA Toolbox

  • Paths
  • Ci
  • Solvers
  • @@ -239,19 +240,19 @@

    The COBRA Toolbox

    Getsetsolver

    -changeCobraSolver(solverName, solverType, printLevel, validationLevel)[source]
    +changeCobraSolver(solverName, problemType, printLevel, validationLevel)[source]

    Changes the Cobra Toolbox optimization solver(s)

    USAGE
    -

    solverOK = changeCobraSolver (solverName, solverType, printLevel, validationLevel)

    +

    [solverOK, solverInstalled] = changeCobraSolver (solverName, solverType, printLevel, validationLevel)

    INPUTS
    • solverName – Solver name

    • -
    • solverType – Solver type (‘LP’ by default) +

    • problemType – Problem type (‘LP’ by default) (a) One of the following: LP MILP, QP, MIQP ‘EP’, ‘CLP’ (b) ‘all’ attempts to change all applicable solvers to solverName. This is purely a shorthand convenience. -(c) Cell array of solverTypes, e.g. {‘LP’,’QP’}

    • +(c) Cell array of problemTypes, e.g. {‘LP’,’QP’}

    • printLevel – verbose level

      • if 0, warnings and errors are silenced

      • @@ -265,7 +266,7 @@

        The COBRA Toolbox

        • -1: assign only the global variable. Do not assign any path.

        • 0: adjust solver paths but don’t validate the solver

        • -
        • 1: validate but remove outputs (default)

        • +
        • 1: validate but remove outputs, silent (default)

        • 2: validate and keep any outputs

    diff --git a/stable/modules/base/solvers/gurobi/index.html b/stable/modules/base/solvers/gurobi/index.html new file mode 100644 index 0000000000..eee3761950 --- /dev/null +++ b/stable/modules/base/solvers/gurobi/index.html @@ -0,0 +1,337 @@ + + + + + + + + + + + + Gurobi — The COBRA Toolbox + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    + + + + + + +
    +
    +
    + +
    +
    +
    +
    + +
    +

    Gurobi

    +
    +
    +setGurobiParam(param)[source]
    +

    The params struct contains Gurobi parameters. A full list may be +found on the Parameter page of the reference manual: +https://www.gurobi.com/documentation/current/refman/parameter_descriptions.html +Parameters must be in TimeLimit not timelimit or timeLimit format, see +below for full list that are eligible to be passed to the solver.

    +
    + +
    + + +
    +
    + +
    +
    +
    + + + + +
    + +
    +

    + © Copyright 2017-2021, The COBRA Toolbox developers. + +

    +
    + Built with Sphinx using a theme provided by Read the Docs. + +
    + +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/stable/modules/base/solvers/index.html b/stable/modules/base/solvers/index.html index 9c2ff6d72c..125b102548 100644 --- a/stable/modules/base/solvers/index.html +++ b/stable/modules/base/solvers/index.html @@ -69,7 +69,7 @@ - + @@ -162,9 +162,9 @@

    The COBRA Toolbox

  • Paths
  • Ci
  • Solvers
  • @@ -238,9 +239,9 @@

    The COBRA Toolbox

    Solvers

    @@ -313,7 +315,8 @@

    The COBRA Toolbox

    * `.ub`: Upper bound vector * `.osense`: Objective sense (`-1`: maximise (default); `1`: minimise) * `.csense`: string with the constraint sense for each row in A ('E', equality, 'G' greater than, 'L' less than). - * `.F`: Positive semidefinite matrix for quadratic part of objective\end{aligned}\end{align} \] + * `.F`: Positive semidefinite matrix for quadratic part of objective +OPTIONAL OUTPUT:\end{aligned}\end{align} \]
    @@ -485,7 +488,7 @@

    The COBRA Toolbox

    * .rcost: Reduced costs, dual solution to \(lb <= v <= ub\) * .dual: dual solution to A*v (‘E’ | ‘G’ | ‘L’) b * .solver: Solver used to solve LP problem -* .method: Algorithm used by solver to solve LP problem +* .lpmethod: Algorithm used by solver to solve LP problem * .stat: Solver status in standardized form

      @@ -753,6 +756,7 @@

      The COBRA Toolbox

    • .slack: slack variable such that \(A*x + s = b\)

    • .obj: Objective value

    • .solver: Solver used to solve QP problem

    • +
    • .qpmethod: Solver qpmethod used to solve QP problem

    • .origStat: Original status returned by the specific solver

    • .time: Solve time in seconds

    • .stat: Solver status in standardized form (see below)

    • @@ -821,7 +825,7 @@

      The COBRA Toolbox

      diff --git a/stable/modules/base/solvers/lp_solve/index.html b/stable/modules/base/solvers/lp_solve/index.html index d94f7f8b99..8f7a8ffd60 100644 --- a/stable/modules/base/solvers/lp_solve/index.html +++ b/stable/modules/base/solvers/lp_solve/index.html @@ -69,7 +69,7 @@ - + @@ -162,9 +162,9 @@

      The COBRA Toolbox

    • Paths
    • Ci
    • Solvers
    • @@ -563,7 +564,7 @@

      The COBRA Toolbox

    @@ -235,11 +236,17 @@

    The COBRA Toolbox

    -
    -

    Msk

    -
    -
    -parseMskResult(res, solverOnlyParams, printLevel)[source]
    +
    +

    Mosek

    +
    +
    +mosekParamStrip(solverParams)[source]
    +

    Remove non-modek parameters to avoid crashing solver interface

    +
    + +
    +
    +parseMskResult(res)[source]

    parse the res structure returned from mosek :INPUTS: res – mosek results structure returned by mosekopt

    @@ -287,6 +294,14 @@

    The COBRA Toolbox

    Author(s): Ronan Fleming

    +
    +
    +setMosekParam(param)[source]
    +

    set mosek parameters from param fields +strip any non mosek compatible fields from param and return it as +mosekParam

    +
    +
    @@ -299,10 +314,10 @@

    The COBRA Toolbox

    diff --git a/stable/modules/base/solvers/param/index.html b/stable/modules/base/solvers/param/index.html index c2eb719c36..e747d19631 100644 --- a/stable/modules/base/solvers/param/index.html +++ b/stable/modules/base/solvers/param/index.html @@ -69,7 +69,7 @@ - + @@ -162,9 +162,9 @@

    The COBRA Toolbox

  • Paths
  • Ci
  • Solvers
  • @@ -309,7 +310,7 @@

    The COBRA Toolbox

    getCobraSolverParams(problemType, paramNames, paramStructure)[source]

    This function gets the specified paramStructure in paramNames from -paramStructure, the global cobra paramters variable or default values set within +paramStructure, the global cobra parameters variable or default values set within this script.

    It will use values with the following priority paramStructure > solver type paramStructure > default paramStructure

    @@ -359,7 +360,7 @@

    The COBRA Toolbox

    INPUT

    problemType – One of the problem types available in the COBRA -Toolbox (‘LP’,’QP’,’MILP’,’MIQP’,’NLP’)

    +Toolbox (‘LP’,’QP’,’EP’,’CLP’,’MILP’,’MIQP’,’NLP’)

    @@ -372,6 +373,12 @@

    The COBRA Toolbox

    +
    +
    +mergeCobraParams(param1, param2)[source]
    +

    Merge the structures with preference to param1 fields over param2 fields

    +
    +
    parseSolverParameters(problemType, varargin)[source]
    @@ -419,7 +426,7 @@

    The COBRA Toolbox

    -
    -
    -reformulateWBMCoupling(model, BIG, printLevel)[source]
    -

    Reformulates badly-scaled model -Transforms LPproblems with badly-scaled stoichiometric and -coupling constraints of the form: -\(max c*x\) subject to: math:Ax <= b

    -

    Eliminates the need for scaling and hence prevents infeasibilities -after unscaling. After using PREFBA to transform a badly-scaled FBA program, -please turn off scaling and reduce the aggressiveness of presolve.

    -

    Rransforms a badly-scaled LPproblem -contained in the struct FBA and returns the transformed program in the -structure FBA. reformulate assumes S and C do not contain very small entries -and transforms constraints containing very large entries (entries larger than -BIG). BIG should be set between 1000 and 10000 on double precision machines. -printLevel = 1 or 0 enables/diables printing respectively.

    -

    Reformulation techniques are described in detail in: -Y. Sun, R. M.T. Fleming, M. A. Saunders, I. Thiele, An Algorithm for Flux -Balance Analysis of Multi-scale Biochemical Networks, submitted.

    -
    -
    USAGE
    -

    [LPproblem] = reformulate (LPproblem, BIG, printLevel)

    -
    -
    INPUTS
    -

    LPproblem – Structure contain the original LP to be solved. The format of -this struct is described in the documentation for solveCobraLP.m

    -
    -
    OPTIONAL INPUTS
    -
      -
    • BIG – A parameter the controls the largest entries that appear in the -reformulated problem.

    • -
    • printLevel – 1 enables printing of problem statistics; -0 = silent

    • -
    -
    -
    OUTPUTS
    -

    LPproblem – Structure contain the reformulated LP to be solved.

    -
    -
    -
    - @@ -365,7 +380,7 @@

    The COBRA Toolbox

    - + diff --git a/stable/modules/base/solvers/varKin/BDCAmethods/index.html b/stable/modules/base/solvers/varKin/BDCAmethods/index.html index e96efb7db0..b9c3422466 100644 --- a/stable/modules/base/solvers/varKin/BDCAmethods/index.html +++ b/stable/modules/base/solvers/varKin/BDCAmethods/index.html @@ -162,9 +162,9 @@

    The COBRA Toolbox

  • Paths
  • Ci
  • Solvers
  • diff --git a/stable/modules/base/solvers/varKin/derFreeMethods/index.html b/stable/modules/base/solvers/varKin/derFreeMethods/index.html index e29028b269..30e573618d 100644 --- a/stable/modules/base/solvers/varKin/derFreeMethods/index.html +++ b/stable/modules/base/solvers/varKin/derFreeMethods/index.html @@ -162,9 +162,9 @@

    The COBRA Toolbox

  • Paths
  • Ci
  • Solvers
  • diff --git a/stable/modules/base/solvers/varKin/index.html b/stable/modules/base/solvers/varKin/index.html index 5a15beee95..ee7f520b51 100644 --- a/stable/modules/base/solvers/varKin/index.html +++ b/stable/modules/base/solvers/varKin/index.html @@ -162,9 +162,9 @@

    The COBRA Toolbox

  • Paths
  • Ci
  • Solvers
  • diff --git a/stable/modules/base/solvers/varKin/levMarMethods/index.html b/stable/modules/base/solvers/varKin/levMarMethods/index.html index 42a9d115c3..9a3d3689a3 100644 --- a/stable/modules/base/solvers/varKin/levMarMethods/index.html +++ b/stable/modules/base/solvers/varKin/levMarMethods/index.html @@ -162,9 +162,9 @@

    The COBRA Toolbox

  • Paths
  • Ci
  • Solvers
  • diff --git a/stable/modules/basefunctions.json b/stable/modules/basefunctions.json index 076b1741e1..53176094aa 100644 --- a/stable/modules/basefunctions.json +++ b/stable/modules/basefunctions.json @@ -1 +1 @@ -[{"name": "adaptMacPath", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=adaptMacPath#src.base.install.adaptMacPath", "id": "1"}, {"name": "addCOBRABinaryPathToSystemPath", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=addCOBRABinaryPathToSystemPath#src.base.install.addCOBRABinaryPathToSystemPath", "id": "2"}, {"name": "addExoMetToEFBA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=addExoMetToEFBA#src.base.solvers.entropicFBA.addExoMetToEFBA", "id": "3"}, {"name": "addKeyToKnownHosts", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=addKeyToKnownHosts#src.base.install.addKeyToKnownHosts", "id": "4"}, {"name": "addKeyToKnownHostsCT", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/ci/index.html?highlight=addKeyToKnownHostsCT#src.base.ci.addKeyToKnownHostsCT", "id": "5"}, {"name": "applyToNonNan", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=applyToNonNan#src.base.utilities.applyToNonNan", "id": "6"}, {"name": "BDCA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/BDCAmethods/index.html?highlight=BDCA#src.base.solvers.varKin.BDCAmethods.BDCA", "id": "7"}, {"name": "BDF", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/derFreeMethods/index.html?highlight=BDF#src.base.solvers.varKin.derFreeMethods.BDF", "id": "8"}, {"name": "buildCplexProblemFromCOBRAStruct", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=buildCplexProblemFromCOBRAStruct#src.base.solvers.cplex.buildCplexProblemFromCOBRAStruct", "id": "9"}, {"name": "buildOptProblemFromModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=buildOptProblemFromModel#src.base.solvers.buildOptProblemFromModel", "id": "10"}, {"name": "buildRxnGeneMat", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=buildRxnGeneMat#src.base.io.utilities.buildRxnGeneMat", "id": "11"}, {"name": "calcDist", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=calcDist#src.base.utilities.calcDist", "id": "12"}, {"name": "calcGroupStats", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=calcGroupStats#src.base..calcGroupStats", "id": "13"}, {"name": "call_python_from_matlab", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/tmp/index.html?highlight=call_python_from_matlab#src.base.io.python.tmp.call_python_from_matlab", "id": "14"}, {"name": "changeCobraSolver", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/getSetSolver/index.html?highlight=changeCobraSolver#src.base.solvers.getSetSolver.changeCobraSolver", "id": "15"}, {"name": "changeCobraSolverParams", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/param/index.html?highlight=changeCobraSolverParams#src.base.solvers.param.changeCobraSolverParams", "id": "16"}, {"name": "checkCNAinstallation", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=checkCNAinstallation#src.base.install.checkCNAinstallation", "id": "17"}, {"name": "checkGAMSSolvers", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/gams/index.html?highlight=checkGAMSSolvers#src.base.solvers.gams.checkGAMSSolvers", "id": "18"}, {"name": "checkSolFeas", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=checkSolFeas#src.base.solvers.cplex.checkSolFeas", "id": "19"}, {"name": "clearGlobal", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=clearGlobal#src.base.utilities.clearGlobal", "id": "20"}, {"name": "COBRArrow", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/cobrarrow/index.html?highlight=COBRArrow#src.base.cobrarrow.COBRArrow", "id": "21"}, {"name": "COBRArrowSolver", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/cobrarrow/index.html?highlight=COBRArrowSolver#src.base.cobrarrow.COBRArrowSolver", "id": "22"}, {"name": "columnVector", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=columnVector#src.base.utilities.columnVector", "id": "23"}, {"name": "comparePaths", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/paths/index.html?highlight=comparePaths#src.base.paths.comparePaths", "id": "24"}, {"name": "computeMutualCoherence", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/index.html?highlight=computeMutualCoherence#src.base.solvers.cardOpt.sparseLP.computeMutualCoherence", "id": "25"}, {"name": "conda", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/condalab/index.html?highlight=conda#src.base.io.python.condalab.conda", "id": "26"}, {"name": "configEnvVars", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/init/index.html?highlight=configEnvVars#src.base.solvers.init.configEnvVars", "id": "27"}, {"name": "convertCbModelToCNAModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=convertCbModelToCNAModel#src.base.io.convertCbModelToCNAModel", "id": "28"}, {"name": "convertCNAModelToCbModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=convertCNAModelToCbModel#src.base.io.convertCNAModelToCbModel", "id": "29"}, {"name": "convertCobraLP2mps", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=convertCobraLP2mps#src.base.io.convertCobraLP2mps", "id": "30"}, {"name": "convertCobraToSBML", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/old/index.html?highlight=convertCobraToSBML#src.base.io.old.convertCobraToSBML", "id": "31"}, {"name": "convertModelToEX", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=convertModelToEX#src.base.io.convertModelToEX", "id": "32"}, {"name": "convertOldCouplingFormat", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=convertOldCouplingFormat#src.base.io.utilities.convertOldCouplingFormat", "id": "33"}, {"name": "convertOldStyleModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=convertOldStyleModel#src.base.io.utilities.convertOldStyleModel", "id": "34"}, {"name": "convertSBMLID", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/SBML/index.html?highlight=convertSBMLID#src.base.io.utilities.SBML.convertSBMLID", "id": "35"}, {"name": "countUnique", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=countUnique#src.base.utilities.countUnique", "id": "36"}, {"name": "CPLEXParamSet", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=CPLEXParamSet#src.base.solvers.cplex.CPLEXParamSet", "id": "37"}, {"name": "cplexStatus", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=cplexStatus#src.base.solvers.cplex.cplexStatus", "id": "38"}, {"name": "createDeltaMatchMatrix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=createDeltaMatchMatrix#src.base..createDeltaMatchMatrix", "id": "39"}, {"name": "createEmptyFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=createEmptyFields#src.base.io.utilities.createEmptyFields", "id": "40"}, {"name": "creategrRulesField", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=creategrRulesField#src.base.io.utilities.creategrRulesField", "id": "41"}, {"name": "createUniversalReactionModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/KEGG/index.html?highlight=createUniversalReactionModel#src.base.io.KEGG.createUniversalReactionModel", "id": "42"}, {"name": "CSDF", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/derFreeMethods/index.html?highlight=CSDF#src.base.solvers.varKin.derFreeMethods.CSDF", "id": "43"}, {"name": "DBDF", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/derFreeMethods/index.html?highlight=DBDF#src.base.solvers.varKin.derFreeMethods.DBDF", "id": "44"}, {"name": "DCA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/BDCAmethods/index.html?highlight=DCA#src.base.solvers.varKin.BDCAmethods.DCA", "id": "45"}, {"name": "debugInfeasibleEntropyFBA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=debugInfeasibleEntropyFBA#src.base.solvers.entropicFBA.debugInfeasibleEntropyFBA", "id": "46"}, {"name": "descFileRead", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/definitions/index.html?highlight=descFileRead#src.base.io.definitions.descFileRead", "id": "47"}, {"name": "dispMatrix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=dispMatrix#src.base.utilities.dispMatrix", "id": "48"}, {"name": "duplicates", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=duplicates#src.base.utilities.duplicates", "id": "49"}, {"name": "editCobraToolboxPath", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/paths/index.html?highlight=editCobraToolboxPath#src.base.paths.editCobraToolboxPath", "id": "50"}, {"name": "entropicFluxBalanceAnalysis", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=entropicFluxBalanceAnalysis#src.base.solvers.entropicFBA.entropicFluxBalanceAnalysis", "id": "51"}, {"name": "evalObj", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/index.html?highlight=evalObj#src.base.solvers.cardOpt.sparseLP.evalObj", "id": "52"}, {"name": "Extended_rate_function", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=Extended_rate_function#src.base.solvers.varKin.levMarMethods.Extended_rate_function", "id": "53"}, {"name": "extendIndicesInDimenion", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=extendIndicesInDimenion#src.base.utilities.extendIndicesInDimenion", "id": "54"}, {"name": "findMinimalSetOfRxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/smoothConcave/index.html?highlight=findMinimalSetOfRxns#src.base.solvers.cardOpt.smoothConcave.findMinimalSetOfRxns", "id": "55"}, {"name": "FuncGradHessSub", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/BDCAmethods/index.html?highlight=FuncGradHessSub#src.base.solvers.varKin.BDCAmethods.FuncGradHessSub", "id": "56"}, {"name": "generateFieldDescriptionFile", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=generateFieldDescriptionFile#src.base.io.utilities.generateFieldDescriptionFile", "id": "57"}, {"name": "generateSystemConfigReport", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=generateSystemConfigReport#src.base..generateSystemConfigReport", "id": "58"}, {"name": "get_py_path", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/pyPath/index.html?highlight=get_py_path#src.base.io.python.pyPath.get_py_path", "id": "59"}, {"name": "getAnnotationFieldName", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/definitions/index.html?highlight=getAnnotationFieldName#src.base.io.definitions.getAnnotationFieldName", "id": "60"}, {"name": "getAvailableGAMSSolvers", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/gams/index.html?highlight=getAvailableGAMSSolvers#src.base.solvers.gams.getAvailableGAMSSolvers", "id": "61"}, {"name": "getAvailableSolversByType", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/getSetSolver/index.html?highlight=getAvailableSolversByType#src.base.solvers.getSetSolver.getAvailableSolversByType", "id": "62"}, {"name": "getBioQualifiers", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/SBML/index.html?highlight=getBioQualifiers#src.base.io.utilities.SBML.getBioQualifiers", "id": "63"}, {"name": "getCobraSolver", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/getSetSolver/index.html?highlight=getCobraSolver#src.base.solvers.getSetSolver.getCobraSolver", "id": "64"}, {"name": "getCobraSolverParams", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/param/index.html?highlight=getCobraSolverParams#src.base.solvers.param.getCobraSolverParams", "id": "65"}, {"name": "getCobraSolverParamsOptionsForType", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/param/index.html?highlight=getCobraSolverParamsOptionsForType#src.base.solvers.param.getCobraSolverParamsOptionsForType", "id": "66"}, {"name": "getCobraSolverVersion", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/getSetSolver/index.html?highlight=getCobraSolverVersion#src.base.solvers.getSetSolver.getCobraSolverVersion", "id": "67"}, {"name": "getDatabaseMappings", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getDatabaseMappings#src.base.io.utilities.getDatabaseMappings", "id": "68"}, {"name": "getDataBases", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/SBML/index.html?highlight=getDataBases#src.base.io.utilities.SBML.getDataBases", "id": "69"}, {"name": "getDefaultCompartments", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getDefaultCompartments#src.base.io.utilities.getDefaultCompartments", "id": "70"}, {"name": "getDefaultCompartmentSymbols", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getDefaultCompartmentSymbols#src.base.io.utilities.getDefaultCompartmentSymbols", "id": "71"}, {"name": "getDefaultTableRow", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=getDefaultTableRow#src.base.utilities.getDefaultTableRow", "id": "72"}, {"name": "getDefaultValue", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=getDefaultValue#src.base.utilities.getDefaultValue", "id": "73"}, {"name": "getDefinedFieldProperties", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getDefinedFieldProperties#src.base.io.utilities.getDefinedFieldProperties", "id": "74"}, {"name": "getDistributedModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getDistributedModel#src.base.io.utilities.getDistributedModel", "id": "75"}, {"name": "getDistributedModelFolder", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getDistributedModelFolder#src.base.io.utilities.getDistributedModelFolder", "id": "76"}, {"name": "getEnvironment", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=getEnvironment#src.base.utilities.getEnvironment", "id": "77"}, {"name": "getExchangedMetaboliteTable", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=getExchangedMetaboliteTable#src.base..getExchangedMetaboliteTable", "id": "78"}, {"name": "getFilesInDir", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=getFilesInDir#src.base.install.getFilesInDir", "id": "79"}, {"name": "getGitBashVersion", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=getGitBashVersion#src.base.install.getGitBashVersion", "id": "80"}, {"name": "getGlobalValue", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=getGlobalValue#src.base.utilities.getGlobalValue", "id": "81"}, {"name": "getIgnoredFiles", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=getIgnoredFiles#src.base.install.getIgnoredFiles", "id": "82"}, {"name": "getMultiDimensionFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getMultiDimensionFields#src.base.io.utilities.getMultiDimensionFields", "id": "83"}, {"name": "getParamList", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=getParamList#src.base.solvers.cplex.getParamList", "id": "84"}, {"name": "getRegisteredDatabases", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/definitions/index.html?highlight=getRegisteredDatabases#src.base.io.definitions.getRegisteredDatabases", "id": "85"}, {"name": "GLM_FY", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=GLM_FY#src.base.solvers.varKin.levMarMethods.GLM_FY", "id": "86"}, {"name": "GLM_YF", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=GLM_YF#src.base.solvers.varKin.levMarMethods.GLM_YF", "id": "87"}, {"name": "hyperlink", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=hyperlink#src.base..hyperlink", "id": "88"}, {"name": "initCobrarrow", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/cobrarrow/index.html?highlight=initCobrarrow#src.base.cobrarrow.initCobrarrow", "id": "89"}, {"name": "initFBAFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=initFBAFields#src.base.io.utilities.initFBAFields", "id": "90"}, {"name": "InitialBDCA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/BDCAmethods/index.html?highlight=InitialBDCA#src.base.solvers.varKin.BDCAmethods.InitialBDCA", "id": "91"}, {"name": "InitialDuplo", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/derFreeMethods/index.html?highlight=InitialDuplo#src.base.solvers.varKin.derFreeMethods.InitialDuplo", "id": "92"}, {"name": "Initialization", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=Initialization#src.base.solvers.varKin.levMarMethods.Initialization", "id": "93"}, {"name": "initPythonEnvironment", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/index.html?highlight=initPythonEnvironment#src.base.io.python.initPythonEnvironment", "id": "94"}, {"name": "installDevTools", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=installDevTools#src.base.install.installDevTools", "id": "95"}, {"name": "installGitBash", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=installGitBash#src.base.install.installGitBash", "id": "96"}, {"name": "isCompatible", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=isCompatible#src.base.solvers.isCompatible", "id": "97"}, {"name": "issueConfirmationWarning", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=issueConfirmationWarning#src.base.utilities.issueConfirmationWarning", "id": "98"}, {"name": "isValidJSON", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/json/index.html?highlight=isValidJSON#src.base.io.json.isValidJSON", "id": "99"}, {"name": "isvar", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=isvar#src.base.utilities.isvar", "id": "100"}, {"name": "LevMar", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=LevMar#src.base.solvers.varKin.levMarMethods.LevMar", "id": "101"}, {"name": "liftModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/rescale/index.html?highlight=liftModel#src.base.solvers.rescale.liftModel", "id": "102"}, {"name": "lin_sym_solver_mldivide", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=lin_sym_solver_mldivide#src.base.solvers.varKin.levMarMethods.lin_sym_solver_mldivide", "id": "103"}, {"name": "listBiGGModels", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/BiGG/index.html?highlight=listBiGGModels#src.base.io.BiGG.listBiGGModels", "id": "104"}, {"name": "LLM", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=LLM#src.base.solvers.varKin.levMarMethods.LLM", "id": "105"}, {"name": "LMLS", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=LMLS#src.base.solvers.varKin.levMarMethods.LMLS", "id": "106"}, {"name": "LMTR", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=LMTR#src.base.solvers.varKin.levMarMethods.LMTR", "id": "107"}, {"name": "loadBiGGModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/BiGG/index.html?highlight=loadBiGGModel#src.base.io.BiGG.loadBiGGModel", "id": "108"}, {"name": "loadIdentifiedModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=loadIdentifiedModel#src.base.io.utilities.loadIdentifiedModel", "id": "109"}, {"name": "lp_solve", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/lp_solve/index.html?highlight=lp_solve#src.base.solvers.lp_solve.lp_solve", "id": "110"}, {"name": "main_norm0", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/smoothConcave/index.html?highlight=main_norm0#src.base.solvers.cardOpt.smoothConcave.main_norm0", "id": "111"}, {"name": "makeSBMLAnnotationString", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/SBML/index.html?highlight=makeSBMLAnnotationString#src.base.io.utilities.SBML.makeSBMLAnnotationString", "id": "112"}, {"name": "mapAnnotationsToFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/SBML/index.html?highlight=mapAnnotationsToFields#src.base.io.utilities.SBML.mapAnnotationsToFields", "id": "113"}, {"name": "mapAontoB", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=mapAontoB#src.base.utilities.mapAontoB", "id": "114"}, {"name": "mapKEGGID2Model", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/KEGG/index.html?highlight=mapKEGGID2Model#src.base.io.KEGG.mapKEGGID2Model", "id": "115"}, {"name": "mapMetName2KEGGID", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/KEGG/index.html?highlight=mapMetName2KEGGID#src.base.io.KEGG.mapMetName2KEGGID", "id": "116"}, {"name": "mergeTextDataAndData", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=mergeTextDataAndData#src.base.io.utilities.mergeTextDataAndData", "id": "117"}, {"name": "model2JSON", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/json/index.html?highlight=model2JSON#src.base.io.json.model2JSON", "id": "118"}, {"name": "model2xls", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=model2xls#src.base.io.utilities.model2xls", "id": "119"}, {"name": "mosekParamSetEFBA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=mosekParamSetEFBA#src.base.solvers.entropicFBA.mosekParamSetEFBA", "id": "120"}, {"name": "mosekParamStrip", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=mosekParamStrip#src.base.solvers.entropicFBA.mosekParamStrip", "id": "121"}, {"name": "mxlpsolve", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/lp_solve/index.html?highlight=mxlpsolve#src.base.solvers.lp_solve.mxlpsolve", "id": "122"}, {"name": "NLPobjPerFlux", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/NLP/index.html?highlight=NLPobjPerFlux#src.base.solvers.NLP.NLPobjPerFlux", "id": "123"}, {"name": "optimizeCardinality", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/index.html?highlight=optimizeCardinality#src.base.solvers.cardOpt.sparseLP.optimizeCardinality", "id": "124"}, {"name": "optimizeCardinality_old", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/old/index.html?highlight=optimizeCardinality_old#src.base.solvers.cardOpt.sparseLP.old.optimizeCardinality_old", "id": "125"}, {"name": "optimizeCardinality_RF", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/old/index.html?highlight=optimizeCardinality_RF#src.base.solvers.cardOpt.sparseLP.old.optimizeCardinality_RF", "id": "126"}, {"name": "optimizeCardinality_weighted_Minh", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/old/index.html?highlight=optimizeCardinality_weighted_Minh#src.base.solvers.cardOpt.sparseLP.old.optimizeCardinality_weighted_Minh", "id": "127"}, {"name": "optimizeCardinalityOld", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/old/index.html?highlight=optimizeCardinalityOld#src.base.solvers.cardOpt.sparseLP.old.optimizeCardinalityOld", "id": "128"}, {"name": "optimizeCbModelNLP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/NLP/index.html?highlight=optimizeCbModelNLP#src.base.solvers.NLP.optimizeCbModelNLP", "id": "129"}, {"name": "optimizeTwoCbModels", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=optimizeTwoCbModels#src.base.solvers.optimizeTwoCbModels", "id": "130"}, {"name": "optimizeVKmodel0", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/index.html?highlight=optimizeVKmodel0#src.base.solvers.varKin.optimizeVKmodel0", "id": "131"}, {"name": "outputHypergraph", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=outputHypergraph#src.base.io.utilities.outputHypergraph", "id": "132"}, {"name": "outputNetworkCytoscape", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=outputNetworkCytoscape#src.base.io.utilities.outputNetworkCytoscape", "id": "133"}, {"name": "outputNetworkOmix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=outputNetworkOmix#src.base.io.utilities.outputNetworkOmix", "id": "134"}, {"name": "parseBoolean", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=parseBoolean#src.base..parseBoolean", "id": "135"}, {"name": "parseCobraVarargin", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=parseCobraVarargin#src.base..parseCobraVarargin", "id": "136"}, {"name": "parseCVTerms", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/SBML/index.html?highlight=parseCVTerms#src.base.io.utilities.SBML.parseCVTerms", "id": "137"}, {"name": "parseGPR", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=parseGPR#src.base..parseGPR", "id": "138"}, {"name": "parseMetNames", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=parseMetNames#src.base..parseMetNames", "id": "139"}, {"name": "parseMskResult", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/msk/index.html?highlight=parseMskResult#src.base.solvers.msk.parseMskResult", "id": "140"}, {"name": "parseRxnFormula", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=parseRxnFormula#src.base..parseRxnFormula", "id": "141"}, {"name": "parseSBMLAnnotationField", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=parseSBMLAnnotationField#src.base.io.utilities.parseSBMLAnnotationField", "id": "142"}, {"name": "parseSBMLAnnotationFieldRxn", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=parseSBMLAnnotationFieldRxn#src.base.io.utilities.parseSBMLAnnotationFieldRxn", "id": "143"}, {"name": "parseSBMLNotesField", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=parseSBMLNotesField#src.base.io.utilities.parseSBMLNotesField", "id": "144"}, {"name": "parseSolverParameters", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/param/index.html?highlight=parseSolverParameters#src.base.solvers.param.parseSolverParameters", "id": "145"}, {"name": "planariseModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=planariseModel#src.base.io.utilities.planariseModel", "id": "146"}, {"name": "portableGitSetup", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=portableGitSetup#src.base.install.portableGitSetup", "id": "147"}, {"name": "prepareTest", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=prepareTest#src.base.install.prepareTest", "id": "148"}, {"name": "preparseGPR", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=preparseGPR#src.base..preparseGPR", "id": "149"}, {"name": "printFunctionIO", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/codeConsistency/index.html?highlight=printFunctionIO#src.base.codeConsistency.printFunctionIO", "id": "150"}, {"name": "processConcConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=processConcConstraints#src.base.solvers.entropicFBA.processConcConstraints", "id": "151"}, {"name": "processFluxConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=processFluxConstraints#src.base.solvers.entropicFBA.processFluxConstraints", "id": "152"}, {"name": "py_addpath", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/pyPath/index.html?highlight=py_addpath#src.base.io.python.pyPath.py_addpath", "id": "153"}, {"name": "py_rmpath", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/pyPath/index.html?highlight=py_rmpath#src.base.io.python.pyPath.py_rmpath", "id": "154"}, {"name": "Rate_function", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/BDCAmethods/index.html?highlight=Rate_function#src.base.solvers.varKin.BDCAmethods.Rate_function", "id": "155"}, {"name": "Rate_function", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/derFreeMethods/index.html?highlight=Rate_function#src.base.solvers.varKin.derFreeMethods.Rate_function", "id": "156"}, {"name": "Rate_function1", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=Rate_function1#src.base.solvers.varKin.levMarMethods.Rate_function1", "id": "157"}, {"name": "readBooleanRegModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=readBooleanRegModel#src.base.io.utilities.readBooleanRegModel", "id": "158"}, {"name": "readCbModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=readCbModel#src.base.io.readCbModel", "id": "159"}, {"name": "readMinosSolution", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=readMinosSolution#src.base.io.readMinosSolution", "id": "160"}, {"name": "readMixedData", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=readMixedData#src.base.io.readMixedData", "id": "161"}, {"name": "readSBML", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=readSBML#src.base.io.utilities.readSBML", "id": "162"}, {"name": "readSimPhenyCMPD", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=readSimPhenyCMPD#src.base.io.utilities.readSimPhenyCMPD", "id": "163"}, {"name": "readSimPhenyGPR", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=readSimPhenyGPR#src.base.io.utilities.readSimPhenyGPR", "id": "164"}, {"name": "readSimPhenyGprText", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=readSimPhenyGprText#src.base.io.utilities.readSimPhenyGprText", "id": "165"}, {"name": "reformulate", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/rescale/index.html?highlight=reformulate#src.base.solvers.rescale.reformulate", "id": "166"}, {"name": "reformulateWBMCoupling", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/rescale/index.html?highlight=reformulateWBMCoupling#src.base.solvers.rescale.reformulateWBMCoupling", "id": "167"}, {"name": "removeIndicesInDimenion", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=removeIndicesInDimenion#src.base.utilities.removeIndicesInDimenion", "id": "168"}, {"name": "removeTempFiles", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=removeTempFiles#src.base.install.removeTempFiles", "id": "169"}, {"name": "removeZeroRowsCols", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=removeZeroRowsCols#src.base.utilities.removeZeroRowsCols", "id": "170"}, {"name": "reporterMets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=reporterMets#src.base..reporterMets", "id": "171"}, {"name": "restoreEnvironment", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=restoreEnvironment#src.base.utilities.restoreEnvironment", "id": "172"}, {"name": "restrictModelsToFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=restrictModelsToFields#src.base.io.utilities.restrictModelsToFields", "id": "173"}, {"name": "sbmlTestModelToMat", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=sbmlTestModelToMat#src.base.io.sbmlTestModelToMat", "id": "174"}, {"name": "selMatrix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=selMatrix#src.base..selMatrix", "id": "175"}, {"name": "setCplexParam", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=setCplexParam#src.base.solvers.cplex.setCplexParam", "id": "176"}, {"name": "setCplexParametersForProblem", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=setCplexParametersForProblem#src.base.solvers.cplex.setCplexParametersForProblem", "id": "177"}, {"name": "setGlobal", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=setGlobal#src.base.utilities.setGlobal", "id": "178"}, {"name": "setWorkerCount", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=setWorkerCount#src.base..setWorkerCount", "id": "179"}, {"name": "showprogress", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=showprogress#src.base.utilities.showprogress", "id": "180"}, {"name": "solveCobraCPLEX", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=solveCobraCPLEX#src.base.solvers.cplex.solveCobraCPLEX", "id": "181"}, {"name": "solveCobraEP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=solveCobraEP#src.base.solvers.entropicFBA.solveCobraEP", "id": "182"}, {"name": "solveCobraLP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=solveCobraLP#src.base.solvers.solveCobraLP", "id": "183"}, {"name": "solveCobraLPCPLEX", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=solveCobraLPCPLEX#src.base.solvers.cplex.solveCobraLPCPLEX", "id": "184"}, {"name": "solveCobraLPCPLEX_2018", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=solveCobraLPCPLEX_2018#src.base.solvers.cplex.solveCobraLPCPLEX_2018", "id": "185"}, {"name": "solveCobraLPCPLEXcard", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=solveCobraLPCPLEXcard#src.base.solvers.cplex.solveCobraLPCPLEXcard", "id": "186"}, {"name": "solveCobraLPLindo", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/lindo/index.html?highlight=solveCobraLPLindo#src.base.solvers.lindo.solveCobraLPLindo", "id": "187"}, {"name": "solveCobraMILP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=solveCobraMILP#src.base.solvers.solveCobraMILP", "id": "188"}, {"name": "solveCobraMIQP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=solveCobraMIQP#src.base.solvers.solveCobraMIQP", "id": "189"}, {"name": "solveCobraNLP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/NLP/index.html?highlight=solveCobraNLP#src.base.solvers.NLP.solveCobraNLP", "id": "190"}, {"name": "solveCobraQP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=solveCobraQP#src.base.solvers.solveCobraQP", "id": "191"}, {"name": "sparseLP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/index.html?highlight=sparseLP#src.base.solvers.cardOpt.sparseLP.sparseLP", "id": "192"}, {"name": "SparseLP_old", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/smoothConcave/index.html?highlight=SparseLP_old#src.base.solvers.cardOpt.smoothConcave.SparseLP_old", "id": "193"}, {"name": "splitString", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=splitString#src.base..splitString", "id": "194"}, {"name": "StopCritBDCA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/BDCAmethods/index.html?highlight=StopCritBDCA#src.base.solvers.varKin.BDCAmethods.StopCritBDCA", "id": "195"}, {"name": "StopCritDuplo", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/derFreeMethods/index.html?highlight=StopCritDuplo#src.base.solvers.varKin.derFreeMethods.StopCritDuplo", "id": "196"}, {"name": "StopCriterion", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=StopCriterion#src.base.solvers.varKin.levMarMethods.StopCriterion", "id": "197"}, {"name": "test_writeModelinJSON", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/cobrapy/index.html?highlight=test_writeModelinJSON#src.base.io.python.cobrapy.test_writeModelinJSON", "id": "198"}, {"name": "transformKEGG2Model", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/KEGG/index.html?highlight=transformKEGG2Model#src.base.io.KEGG.transformKEGG2Model", "id": "199"}, {"name": "transformModel2KEGG", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/KEGG/index.html?highlight=transformModel2KEGG#src.base.io.KEGG.transformModel2KEGG", "id": "200"}, {"name": "translateList", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=translateList#src.base..translateList", "id": "201"}, {"name": "tuneParam", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=tuneParam#src.base.solvers.cplex.tuneParam", "id": "202"}, {"name": "tuneParamForModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=tuneParamForModel#src.base.solvers.cplex.tuneParamForModel", "id": "203"}, {"name": "unioncell", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=unioncell#src.base.utilities.unioncell", "id": "204"}, {"name": "updateCobraToolbox", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=updateCobraToolbox#src.base.install.updateCobraToolbox", "id": "205"}, {"name": "updateGitBash", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=updateGitBash#src.base.install.updateGitBash", "id": "206"}, {"name": "updateObj", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/index.html?highlight=updateObj#src.base.solvers.cardOpt.sparseLP.updateObj", "id": "207"}, {"name": "updateStructData", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=updateStructData#src.base.utilities.updateStructData", "id": "208"}, {"name": "verifyCobraProblem", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=verifyCobraProblem#src.base.solvers.verifyCobraProblem", "id": "209"}, {"name": "write4ti2", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=write4ti2#src.base.io.utilities.write4ti2", "id": "210"}, {"name": "writeCbModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=writeCbModel#src.base.io.writeCbModel", "id": "211"}, {"name": "writeCytoscapeEdgeAttributeTable", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=writeCytoscapeEdgeAttributeTable#src.base.io.utilities.writeCytoscapeEdgeAttributeTable", "id": "212"}, {"name": "writeGDXFromCOBRA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=writeGDXFromCOBRA#src.base.io.writeGDXFromCOBRA", "id": "213"}, {"name": "writeLPProblem", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=writeLPProblem#src.base.io.writeLPProblem", "id": "214"}, {"name": "writeMinosProblem", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=writeMinosProblem#src.base.io.writeMinosProblem", "id": "215"}, {"name": "writeModelinJSON", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/cobrapy/index.html?highlight=writeModelinJSON#src.base.io.python.cobrapy.writeModelinJSON", "id": "216"}, {"name": "writeNewtExperiment", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/newt/index.html?highlight=writeNewtExperiment#src.base.io.newt.writeNewtExperiment", "id": "217"}, {"name": "writePajekNet", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=writePajekNet#src.base.io.utilities.writePajekNet", "id": "218"}, {"name": "writeSBML", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=writeSBML#src.base.io.utilities.writeSBML", "id": "219"}, {"name": "xls2model", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=xls2model#src.base.io.utilities.xls2model", "id": "220"}] \ No newline at end of file +[{"name": "adaptMacPath", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=adaptMacPath#src.base.install.adaptMacPath", "id": "1"}, {"name": "addCOBRABinaryPathToSystemPath", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=addCOBRABinaryPathToSystemPath#src.base.install.addCOBRABinaryPathToSystemPath", "id": "2"}, {"name": "addExoMetToEFBA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=addExoMetToEFBA#src.base.solvers.entropicFBA.addExoMetToEFBA", "id": "3"}, {"name": "addKeyToKnownHosts", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=addKeyToKnownHosts#src.base.install.addKeyToKnownHosts", "id": "4"}, {"name": "addKeyToKnownHostsCT", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/ci/index.html?highlight=addKeyToKnownHostsCT#src.base.ci.addKeyToKnownHostsCT", "id": "5"}, {"name": "applyToNonNan", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=applyToNonNan#src.base.utilities.applyToNonNan", "id": "6"}, {"name": "BDCA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/BDCAmethods/index.html?highlight=BDCA#src.base.solvers.varKin.BDCAmethods.BDCA", "id": "7"}, {"name": "BDF", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/derFreeMethods/index.html?highlight=BDF#src.base.solvers.varKin.derFreeMethods.BDF", "id": "8"}, {"name": "buildCplexProblemFromCOBRAStruct", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=buildCplexProblemFromCOBRAStruct#src.base.solvers.cplex.buildCplexProblemFromCOBRAStruct", "id": "9"}, {"name": "buildOptProblemFromModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=buildOptProblemFromModel#src.base.solvers.buildOptProblemFromModel", "id": "10"}, {"name": "buildRxnGeneMat", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=buildRxnGeneMat#src.base.io.utilities.buildRxnGeneMat", "id": "11"}, {"name": "calcDist", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=calcDist#src.base.utilities.calcDist", "id": "12"}, {"name": "calcGroupStats", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=calcGroupStats#src.base..calcGroupStats", "id": "13"}, {"name": "call_python_from_matlab", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/tmp/index.html?highlight=call_python_from_matlab#src.base.io.python.tmp.call_python_from_matlab", "id": "14"}, {"name": "changeCobraSolver", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/getSetSolver/index.html?highlight=changeCobraSolver#src.base.solvers.getSetSolver.changeCobraSolver", "id": "15"}, {"name": "changeCobraSolverParams", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/param/index.html?highlight=changeCobraSolverParams#src.base.solvers.param.changeCobraSolverParams", "id": "16"}, {"name": "checkCNAinstallation", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=checkCNAinstallation#src.base.install.checkCNAinstallation", "id": "17"}, {"name": "checkGAMSSolvers", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/gams/index.html?highlight=checkGAMSSolvers#src.base.solvers.gams.checkGAMSSolvers", "id": "18"}, {"name": "checkSolFeas", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=checkSolFeas#src.base.solvers.cplex.checkSolFeas", "id": "19"}, {"name": "clearGlobal", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=clearGlobal#src.base.utilities.clearGlobal", "id": "20"}, {"name": "COBRArrow", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/cobrarrow/index.html?highlight=COBRArrow#src.base.cobrarrow.COBRArrow", "id": "21"}, {"name": "COBRArrowSolver", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/cobrarrow/index.html?highlight=COBRArrowSolver#src.base.cobrarrow.COBRArrowSolver", "id": "22"}, {"name": "columnVector", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=columnVector#src.base.utilities.columnVector", "id": "23"}, {"name": "comparePaths", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/paths/index.html?highlight=comparePaths#src.base.paths.comparePaths", "id": "24"}, {"name": "computeMutualCoherence", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/index.html?highlight=computeMutualCoherence#src.base.solvers.cardOpt.sparseLP.computeMutualCoherence", "id": "25"}, {"name": "conda", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/condalab/index.html?highlight=conda#src.base.io.python.condalab.conda", "id": "26"}, {"name": "configEnvVars", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/init/index.html?highlight=configEnvVars#src.base.solvers.init.configEnvVars", "id": "27"}, {"name": "convertCbModelToCNAModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=convertCbModelToCNAModel#src.base.io.convertCbModelToCNAModel", "id": "28"}, {"name": "convertCNAModelToCbModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=convertCNAModelToCbModel#src.base.io.convertCNAModelToCbModel", "id": "29"}, {"name": "convertCobraLP2mps", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=convertCobraLP2mps#src.base.io.convertCobraLP2mps", "id": "30"}, {"name": "convertCobraToSBML", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/old/index.html?highlight=convertCobraToSBML#src.base.io.old.convertCobraToSBML", "id": "31"}, {"name": "convertModelToEX", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=convertModelToEX#src.base.io.convertModelToEX", "id": "32"}, {"name": "convertOldCouplingFormat", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=convertOldCouplingFormat#src.base.io.utilities.convertOldCouplingFormat", "id": "33"}, {"name": "convertOldStyleModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=convertOldStyleModel#src.base.io.utilities.convertOldStyleModel", "id": "34"}, {"name": "convertSBMLID", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/SBML/index.html?highlight=convertSBMLID#src.base.io.utilities.SBML.convertSBMLID", "id": "35"}, {"name": "countUnique", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=countUnique#src.base.utilities.countUnique", "id": "36"}, {"name": "CPLEXParamSet", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=CPLEXParamSet#src.base.solvers.cplex.CPLEXParamSet", "id": "37"}, {"name": "cplexStatus", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=cplexStatus#src.base.solvers.cplex.cplexStatus", "id": "38"}, {"name": "createDeltaMatchMatrix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=createDeltaMatchMatrix#src.base..createDeltaMatchMatrix", "id": "39"}, {"name": "createEmptyFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=createEmptyFields#src.base.io.utilities.createEmptyFields", "id": "40"}, {"name": "creategrRulesField", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=creategrRulesField#src.base.io.utilities.creategrRulesField", "id": "41"}, {"name": "createUniversalReactionModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/KEGG/index.html?highlight=createUniversalReactionModel#src.base.io.KEGG.createUniversalReactionModel", "id": "42"}, {"name": "CSDF", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/derFreeMethods/index.html?highlight=CSDF#src.base.solvers.varKin.derFreeMethods.CSDF", "id": "43"}, {"name": "DBDF", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/derFreeMethods/index.html?highlight=DBDF#src.base.solvers.varKin.derFreeMethods.DBDF", "id": "44"}, {"name": "DCA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/BDCAmethods/index.html?highlight=DCA#src.base.solvers.varKin.BDCAmethods.DCA", "id": "45"}, {"name": "debugInfeasibleEntropyFBA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=debugInfeasibleEntropyFBA#src.base.solvers.entropicFBA.debugInfeasibleEntropyFBA", "id": "46"}, {"name": "descFileRead", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/definitions/index.html?highlight=descFileRead#src.base.io.definitions.descFileRead", "id": "47"}, {"name": "dispMatrix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=dispMatrix#src.base.utilities.dispMatrix", "id": "48"}, {"name": "duplicates", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=duplicates#src.base.utilities.duplicates", "id": "49"}, {"name": "editCobraToolboxPath", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/paths/index.html?highlight=editCobraToolboxPath#src.base.paths.editCobraToolboxPath", "id": "50"}, {"name": "entropicFluxBalanceAnalysis", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=entropicFluxBalanceAnalysis#src.base.solvers.entropicFBA.entropicFluxBalanceAnalysis", "id": "51"}, {"name": "evalObj", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/index.html?highlight=evalObj#src.base.solvers.cardOpt.sparseLP.evalObj", "id": "52"}, {"name": "Extended_rate_function", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=Extended_rate_function#src.base.solvers.varKin.levMarMethods.Extended_rate_function", "id": "53"}, {"name": "extendIndicesInDimenion", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=extendIndicesInDimenion#src.base.utilities.extendIndicesInDimenion", "id": "54"}, {"name": "findMinimalSetOfRxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/smoothConcave/index.html?highlight=findMinimalSetOfRxns#src.base.solvers.cardOpt.smoothConcave.findMinimalSetOfRxns", "id": "55"}, {"name": "FuncGradHessSub", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/BDCAmethods/index.html?highlight=FuncGradHessSub#src.base.solvers.varKin.BDCAmethods.FuncGradHessSub", "id": "56"}, {"name": "generateFieldDescriptionFile", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=generateFieldDescriptionFile#src.base.io.utilities.generateFieldDescriptionFile", "id": "57"}, {"name": "generateSystemConfigReport", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=generateSystemConfigReport#src.base..generateSystemConfigReport", "id": "58"}, {"name": "get_py_path", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/pyPath/index.html?highlight=get_py_path#src.base.io.python.pyPath.get_py_path", "id": "59"}, {"name": "getAnnotationFieldName", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/definitions/index.html?highlight=getAnnotationFieldName#src.base.io.definitions.getAnnotationFieldName", "id": "60"}, {"name": "getAvailableGAMSSolvers", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/gams/index.html?highlight=getAvailableGAMSSolvers#src.base.solvers.gams.getAvailableGAMSSolvers", "id": "61"}, {"name": "getAvailableSolversByType", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/getSetSolver/index.html?highlight=getAvailableSolversByType#src.base.solvers.getSetSolver.getAvailableSolversByType", "id": "62"}, {"name": "getBioQualifiers", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/SBML/index.html?highlight=getBioQualifiers#src.base.io.utilities.SBML.getBioQualifiers", "id": "63"}, {"name": "getCobraSolver", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/getSetSolver/index.html?highlight=getCobraSolver#src.base.solvers.getSetSolver.getCobraSolver", "id": "64"}, {"name": "getCobraSolverParams", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/param/index.html?highlight=getCobraSolverParams#src.base.solvers.param.getCobraSolverParams", "id": "65"}, {"name": "getCobraSolverParamsOptionsForType", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/param/index.html?highlight=getCobraSolverParamsOptionsForType#src.base.solvers.param.getCobraSolverParamsOptionsForType", "id": "66"}, {"name": "getCobraSolverVersion", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/getSetSolver/index.html?highlight=getCobraSolverVersion#src.base.solvers.getSetSolver.getCobraSolverVersion", "id": "67"}, {"name": "getDatabaseMappings", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getDatabaseMappings#src.base.io.utilities.getDatabaseMappings", "id": "68"}, {"name": "getDataBases", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/SBML/index.html?highlight=getDataBases#src.base.io.utilities.SBML.getDataBases", "id": "69"}, {"name": "getDefaultCompartments", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getDefaultCompartments#src.base.io.utilities.getDefaultCompartments", "id": "70"}, {"name": "getDefaultCompartmentSymbols", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getDefaultCompartmentSymbols#src.base.io.utilities.getDefaultCompartmentSymbols", "id": "71"}, {"name": "getDefaultTableRow", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=getDefaultTableRow#src.base.utilities.getDefaultTableRow", "id": "72"}, {"name": "getDefaultValue", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=getDefaultValue#src.base.utilities.getDefaultValue", "id": "73"}, {"name": "getDefinedFieldProperties", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getDefinedFieldProperties#src.base.io.utilities.getDefinedFieldProperties", "id": "74"}, {"name": "getDistributedModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getDistributedModel#src.base.io.utilities.getDistributedModel", "id": "75"}, {"name": "getDistributedModelFolder", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getDistributedModelFolder#src.base.io.utilities.getDistributedModelFolder", "id": "76"}, {"name": "getEnvironment", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=getEnvironment#src.base.utilities.getEnvironment", "id": "77"}, {"name": "getExchangedMetaboliteTable", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=getExchangedMetaboliteTable#src.base..getExchangedMetaboliteTable", "id": "78"}, {"name": "getFilesInDir", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=getFilesInDir#src.base.install.getFilesInDir", "id": "79"}, {"name": "getGitBashVersion", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=getGitBashVersion#src.base.install.getGitBashVersion", "id": "80"}, {"name": "getGlobalValue", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=getGlobalValue#src.base.utilities.getGlobalValue", "id": "81"}, {"name": "getIgnoredFiles", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=getIgnoredFiles#src.base.install.getIgnoredFiles", "id": "82"}, {"name": "getMultiDimensionFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=getMultiDimensionFields#src.base.io.utilities.getMultiDimensionFields", "id": "83"}, {"name": "getParamList", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=getParamList#src.base.solvers.cplex.getParamList", "id": "84"}, {"name": "getRegisteredDatabases", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/definitions/index.html?highlight=getRegisteredDatabases#src.base.io.definitions.getRegisteredDatabases", "id": "85"}, {"name": "GLM_FY", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=GLM_FY#src.base.solvers.varKin.levMarMethods.GLM_FY", "id": "86"}, {"name": "GLM_YF", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=GLM_YF#src.base.solvers.varKin.levMarMethods.GLM_YF", "id": "87"}, {"name": "hyperlink", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=hyperlink#src.base..hyperlink", "id": "88"}, {"name": "initCobrarrow", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/cobrarrow/index.html?highlight=initCobrarrow#src.base.cobrarrow.initCobrarrow", "id": "89"}, {"name": "initFBAFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=initFBAFields#src.base.io.utilities.initFBAFields", "id": "90"}, {"name": "InitialBDCA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/BDCAmethods/index.html?highlight=InitialBDCA#src.base.solvers.varKin.BDCAmethods.InitialBDCA", "id": "91"}, {"name": "InitialDuplo", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/derFreeMethods/index.html?highlight=InitialDuplo#src.base.solvers.varKin.derFreeMethods.InitialDuplo", "id": "92"}, {"name": "Initialization", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=Initialization#src.base.solvers.varKin.levMarMethods.Initialization", "id": "93"}, {"name": "initPythonEnvironment", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/index.html?highlight=initPythonEnvironment#src.base.io.python.initPythonEnvironment", "id": "94"}, {"name": "installDevTools", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=installDevTools#src.base.install.installDevTools", "id": "95"}, {"name": "installGitBash", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=installGitBash#src.base.install.installGitBash", "id": "96"}, {"name": "isCompatible", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=isCompatible#src.base.solvers.isCompatible", "id": "97"}, {"name": "issueConfirmationWarning", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=issueConfirmationWarning#src.base.utilities.issueConfirmationWarning", "id": "98"}, {"name": "isValidJSON", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/json/index.html?highlight=isValidJSON#src.base.io.json.isValidJSON", "id": "99"}, {"name": "isvar", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=isvar#src.base.utilities.isvar", "id": "100"}, {"name": "LevMar", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=LevMar#src.base.solvers.varKin.levMarMethods.LevMar", "id": "101"}, {"name": "liftCouplingConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/rescale/index.html?highlight=liftCouplingConstraints#src.base.solvers.rescale.liftCouplingConstraints", "id": "102"}, {"name": "liftModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/rescale/index.html?highlight=liftModel#src.base.solvers.rescale.liftModel", "id": "103"}, {"name": "lin_sym_solver_mldivide", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=lin_sym_solver_mldivide#src.base.solvers.varKin.levMarMethods.lin_sym_solver_mldivide", "id": "104"}, {"name": "listBiGGModels", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/BiGG/index.html?highlight=listBiGGModels#src.base.io.BiGG.listBiGGModels", "id": "105"}, {"name": "LLM", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=LLM#src.base.solvers.varKin.levMarMethods.LLM", "id": "106"}, {"name": "LMLS", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=LMLS#src.base.solvers.varKin.levMarMethods.LMLS", "id": "107"}, {"name": "LMTR", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=LMTR#src.base.solvers.varKin.levMarMethods.LMTR", "id": "108"}, {"name": "loadBiGGModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/BiGG/index.html?highlight=loadBiGGModel#src.base.io.BiGG.loadBiGGModel", "id": "109"}, {"name": "loadIdentifiedModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=loadIdentifiedModel#src.base.io.utilities.loadIdentifiedModel", "id": "110"}, {"name": "lp_solve", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/lp_solve/index.html?highlight=lp_solve#src.base.solvers.lp_solve.lp_solve", "id": "111"}, {"name": "main_norm0", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/smoothConcave/index.html?highlight=main_norm0#src.base.solvers.cardOpt.smoothConcave.main_norm0", "id": "112"}, {"name": "makeSBMLAnnotationString", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/SBML/index.html?highlight=makeSBMLAnnotationString#src.base.io.utilities.SBML.makeSBMLAnnotationString", "id": "113"}, {"name": "mapAnnotationsToFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/SBML/index.html?highlight=mapAnnotationsToFields#src.base.io.utilities.SBML.mapAnnotationsToFields", "id": "114"}, {"name": "mapAontoB", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=mapAontoB#src.base.utilities.mapAontoB", "id": "115"}, {"name": "mapKEGGID2Model", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/KEGG/index.html?highlight=mapKEGGID2Model#src.base.io.KEGG.mapKEGGID2Model", "id": "116"}, {"name": "mapMetName2KEGGID", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/KEGG/index.html?highlight=mapMetName2KEGGID#src.base.io.KEGG.mapMetName2KEGGID", "id": "117"}, {"name": "mergeCobraParams", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/param/index.html?highlight=mergeCobraParams#src.base.solvers.param.mergeCobraParams", "id": "118"}, {"name": "mergeTextDataAndData", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=mergeTextDataAndData#src.base.io.utilities.mergeTextDataAndData", "id": "119"}, {"name": "model2JSON", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/json/index.html?highlight=model2JSON#src.base.io.json.model2JSON", "id": "120"}, {"name": "model2xls", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=model2xls#src.base.io.utilities.model2xls", "id": "121"}, {"name": "mosekParamStrip", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/mosek/index.html?highlight=mosekParamStrip#src.base.solvers.mosek.mosekParamStrip", "id": "122"}, {"name": "mxlpsolve", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/lp_solve/index.html?highlight=mxlpsolve#src.base.solvers.lp_solve.mxlpsolve", "id": "123"}, {"name": "NLPobjPerFlux", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/NLP/index.html?highlight=NLPobjPerFlux#src.base.solvers.NLP.NLPobjPerFlux", "id": "124"}, {"name": "optimizeCardinality", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/index.html?highlight=optimizeCardinality#src.base.solvers.cardOpt.sparseLP.optimizeCardinality", "id": "125"}, {"name": "optimizeCardinality_old", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/old/index.html?highlight=optimizeCardinality_old#src.base.solvers.cardOpt.sparseLP.old.optimizeCardinality_old", "id": "126"}, {"name": "optimizeCardinality_RF", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/old/index.html?highlight=optimizeCardinality_RF#src.base.solvers.cardOpt.sparseLP.old.optimizeCardinality_RF", "id": "127"}, {"name": "optimizeCardinality_weighted_Minh", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/old/index.html?highlight=optimizeCardinality_weighted_Minh#src.base.solvers.cardOpt.sparseLP.old.optimizeCardinality_weighted_Minh", "id": "128"}, {"name": "optimizeCardinalityOld", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/old/index.html?highlight=optimizeCardinalityOld#src.base.solvers.cardOpt.sparseLP.old.optimizeCardinalityOld", "id": "129"}, {"name": "optimizeCbModelNLP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/NLP/index.html?highlight=optimizeCbModelNLP#src.base.solvers.NLP.optimizeCbModelNLP", "id": "130"}, {"name": "optimizeTwoCbModels", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=optimizeTwoCbModels#src.base.solvers.optimizeTwoCbModels", "id": "131"}, {"name": "optimizeVKmodel0", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/index.html?highlight=optimizeVKmodel0#src.base.solvers.varKin.optimizeVKmodel0", "id": "132"}, {"name": "outputHypergraph", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=outputHypergraph#src.base.io.utilities.outputHypergraph", "id": "133"}, {"name": "outputNetworkCytoscape", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=outputNetworkCytoscape#src.base.io.utilities.outputNetworkCytoscape", "id": "134"}, {"name": "outputNetworkOmix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=outputNetworkOmix#src.base.io.utilities.outputNetworkOmix", "id": "135"}, {"name": "parseBoolean", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=parseBoolean#src.base..parseBoolean", "id": "136"}, {"name": "parseCobraVarargin", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=parseCobraVarargin#src.base..parseCobraVarargin", "id": "137"}, {"name": "parseCVTerms", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/SBML/index.html?highlight=parseCVTerms#src.base.io.utilities.SBML.parseCVTerms", "id": "138"}, {"name": "parseGPR", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=parseGPR#src.base..parseGPR", "id": "139"}, {"name": "parseMetNames", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=parseMetNames#src.base..parseMetNames", "id": "140"}, {"name": "parseMskResult", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/mosek/index.html?highlight=parseMskResult#src.base.solvers.mosek.parseMskResult", "id": "141"}, {"name": "parseRxnFormula", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=parseRxnFormula#src.base..parseRxnFormula", "id": "142"}, {"name": "parseSBMLAnnotationField", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=parseSBMLAnnotationField#src.base.io.utilities.parseSBMLAnnotationField", "id": "143"}, {"name": "parseSBMLAnnotationFieldRxn", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=parseSBMLAnnotationFieldRxn#src.base.io.utilities.parseSBMLAnnotationFieldRxn", "id": "144"}, {"name": "parseSBMLNotesField", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=parseSBMLNotesField#src.base.io.utilities.parseSBMLNotesField", "id": "145"}, {"name": "parseSolverParameters", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/param/index.html?highlight=parseSolverParameters#src.base.solvers.param.parseSolverParameters", "id": "146"}, {"name": "planariseModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=planariseModel#src.base.io.utilities.planariseModel", "id": "147"}, {"name": "portableGitSetup", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=portableGitSetup#src.base.install.portableGitSetup", "id": "148"}, {"name": "prepareTest", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=prepareTest#src.base.install.prepareTest", "id": "149"}, {"name": "preparseGPR", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=preparseGPR#src.base..preparseGPR", "id": "150"}, {"name": "printFunctionIO", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/codeConsistency/index.html?highlight=printFunctionIO#src.base.codeConsistency.printFunctionIO", "id": "151"}, {"name": "processConcConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=processConcConstraints#src.base.solvers.entropicFBA.processConcConstraints", "id": "152"}, {"name": "processFluxConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=processFluxConstraints#src.base.solvers.entropicFBA.processFluxConstraints", "id": "153"}, {"name": "py_addpath", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/pyPath/index.html?highlight=py_addpath#src.base.io.python.pyPath.py_addpath", "id": "154"}, {"name": "py_rmpath", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/pyPath/index.html?highlight=py_rmpath#src.base.io.python.pyPath.py_rmpath", "id": "155"}, {"name": "Rate_function", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/BDCAmethods/index.html?highlight=Rate_function#src.base.solvers.varKin.BDCAmethods.Rate_function", "id": "156"}, {"name": "Rate_function", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/derFreeMethods/index.html?highlight=Rate_function#src.base.solvers.varKin.derFreeMethods.Rate_function", "id": "157"}, {"name": "Rate_function1", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=Rate_function1#src.base.solvers.varKin.levMarMethods.Rate_function1", "id": "158"}, {"name": "readBooleanRegModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=readBooleanRegModel#src.base.io.utilities.readBooleanRegModel", "id": "159"}, {"name": "readCbModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=readCbModel#src.base.io.readCbModel", "id": "160"}, {"name": "readMinosSolution", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=readMinosSolution#src.base.io.readMinosSolution", "id": "161"}, {"name": "readMixedData", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=readMixedData#src.base.io.readMixedData", "id": "162"}, {"name": "readSBML", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=readSBML#src.base.io.utilities.readSBML", "id": "163"}, {"name": "readSimPhenyCMPD", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=readSimPhenyCMPD#src.base.io.utilities.readSimPhenyCMPD", "id": "164"}, {"name": "readSimPhenyGPR", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=readSimPhenyGPR#src.base.io.utilities.readSimPhenyGPR", "id": "165"}, {"name": "readSimPhenyGprText", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=readSimPhenyGprText#src.base.io.utilities.readSimPhenyGprText", "id": "166"}, {"name": "reformulate", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/rescale/index.html?highlight=reformulate#src.base.solvers.rescale.reformulate", "id": "167"}, {"name": "removeIndicesInDimenion", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=removeIndicesInDimenion#src.base.utilities.removeIndicesInDimenion", "id": "168"}, {"name": "removeTempFiles", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=removeTempFiles#src.base.install.removeTempFiles", "id": "169"}, {"name": "removeZeroRowsCols", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=removeZeroRowsCols#src.base.utilities.removeZeroRowsCols", "id": "170"}, {"name": "reporterMets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=reporterMets#src.base..reporterMets", "id": "171"}, {"name": "restoreEnvironment", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=restoreEnvironment#src.base.utilities.restoreEnvironment", "id": "172"}, {"name": "restrictModelsToFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=restrictModelsToFields#src.base.io.utilities.restrictModelsToFields", "id": "173"}, {"name": "sbmlTestModelToMat", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=sbmlTestModelToMat#src.base.io.sbmlTestModelToMat", "id": "174"}, {"name": "selMatrix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=selMatrix#src.base..selMatrix", "id": "175"}, {"name": "setCplexParam", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=setCplexParam#src.base.solvers.cplex.setCplexParam", "id": "176"}, {"name": "setCplexParametersForProblem", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=setCplexParametersForProblem#src.base.solvers.cplex.setCplexParametersForProblem", "id": "177"}, {"name": "setGlobal", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=setGlobal#src.base.utilities.setGlobal", "id": "178"}, {"name": "setGurobiParam", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/gurobi/index.html?highlight=setGurobiParam#src.base.solvers.gurobi.setGurobiParam", "id": "179"}, {"name": "setMosekParam", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/mosek/index.html?highlight=setMosekParam#src.base.solvers.mosek.setMosekParam", "id": "180"}, {"name": "setWorkerCount", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=setWorkerCount#src.base..setWorkerCount", "id": "181"}, {"name": "showprogress", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=showprogress#src.base.utilities.showprogress", "id": "182"}, {"name": "solveCobraCPLEX", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=solveCobraCPLEX#src.base.solvers.cplex.solveCobraCPLEX", "id": "183"}, {"name": "solveCobraEP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/entropicFBA/index.html?highlight=solveCobraEP#src.base.solvers.entropicFBA.solveCobraEP", "id": "184"}, {"name": "solveCobraLP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=solveCobraLP#src.base.solvers.solveCobraLP", "id": "185"}, {"name": "solveCobraLPCPLEX", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=solveCobraLPCPLEX#src.base.solvers.cplex.solveCobraLPCPLEX", "id": "186"}, {"name": "solveCobraLPCPLEX_2018", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=solveCobraLPCPLEX_2018#src.base.solvers.cplex.solveCobraLPCPLEX_2018", "id": "187"}, {"name": "solveCobraLPCPLEXcard", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=solveCobraLPCPLEXcard#src.base.solvers.cplex.solveCobraLPCPLEXcard", "id": "188"}, {"name": "solveCobraLPLindo", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/lindo/index.html?highlight=solveCobraLPLindo#src.base.solvers.lindo.solveCobraLPLindo", "id": "189"}, {"name": "solveCobraMILP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=solveCobraMILP#src.base.solvers.solveCobraMILP", "id": "190"}, {"name": "solveCobraMIQP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=solveCobraMIQP#src.base.solvers.solveCobraMIQP", "id": "191"}, {"name": "solveCobraNLP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/NLP/index.html?highlight=solveCobraNLP#src.base.solvers.NLP.solveCobraNLP", "id": "192"}, {"name": "solveCobraQP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=solveCobraQP#src.base.solvers.solveCobraQP", "id": "193"}, {"name": "sparseLP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/index.html?highlight=sparseLP#src.base.solvers.cardOpt.sparseLP.sparseLP", "id": "194"}, {"name": "SparseLP_old", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/smoothConcave/index.html?highlight=SparseLP_old#src.base.solvers.cardOpt.smoothConcave.SparseLP_old", "id": "195"}, {"name": "splitString", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=splitString#src.base..splitString", "id": "196"}, {"name": "StopCritBDCA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/BDCAmethods/index.html?highlight=StopCritBDCA#src.base.solvers.varKin.BDCAmethods.StopCritBDCA", "id": "197"}, {"name": "StopCritDuplo", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/derFreeMethods/index.html?highlight=StopCritDuplo#src.base.solvers.varKin.derFreeMethods.StopCritDuplo", "id": "198"}, {"name": "StopCriterion", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/varKin/levMarMethods/index.html?highlight=StopCriterion#src.base.solvers.varKin.levMarMethods.StopCriterion", "id": "199"}, {"name": "test_writeModelinJSON", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/cobrapy/index.html?highlight=test_writeModelinJSON#src.base.io.python.cobrapy.test_writeModelinJSON", "id": "200"}, {"name": "transformKEGG2Model", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/KEGG/index.html?highlight=transformKEGG2Model#src.base.io.KEGG.transformKEGG2Model", "id": "201"}, {"name": "transformModel2KEGG", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/KEGG/index.html?highlight=transformModel2KEGG#src.base.io.KEGG.transformModel2KEGG", "id": "202"}, {"name": "translateList", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/index.html?highlight=translateList#src.base..translateList", "id": "203"}, {"name": "tuneParam", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=tuneParam#src.base.solvers.cplex.tuneParam", "id": "204"}, {"name": "tuneParamForModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cplex/index.html?highlight=tuneParamForModel#src.base.solvers.cplex.tuneParamForModel", "id": "205"}, {"name": "unioncell", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=unioncell#src.base.utilities.unioncell", "id": "206"}, {"name": "updateCobraToolbox", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=updateCobraToolbox#src.base.install.updateCobraToolbox", "id": "207"}, {"name": "updateGitBash", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/install/index.html?highlight=updateGitBash#src.base.install.updateGitBash", "id": "208"}, {"name": "updateObj", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/cardOpt/sparseLP/index.html?highlight=updateObj#src.base.solvers.cardOpt.sparseLP.updateObj", "id": "209"}, {"name": "updateStructData", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/utilities/index.html?highlight=updateStructData#src.base.utilities.updateStructData", "id": "210"}, {"name": "verifyCobraProblem", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/solvers/index.html?highlight=verifyCobraProblem#src.base.solvers.verifyCobraProblem", "id": "211"}, {"name": "write4ti2", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=write4ti2#src.base.io.utilities.write4ti2", "id": "212"}, {"name": "writeCbModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=writeCbModel#src.base.io.writeCbModel", "id": "213"}, {"name": "writeCytoscapeEdgeAttributeTable", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=writeCytoscapeEdgeAttributeTable#src.base.io.utilities.writeCytoscapeEdgeAttributeTable", "id": "214"}, {"name": "writeGDXFromCOBRA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=writeGDXFromCOBRA#src.base.io.writeGDXFromCOBRA", "id": "215"}, {"name": "writeLPProblem", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=writeLPProblem#src.base.io.writeLPProblem", "id": "216"}, {"name": "writeMinosProblem", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/index.html?highlight=writeMinosProblem#src.base.io.writeMinosProblem", "id": "217"}, {"name": "writeModelinJSON", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/python/cobrapy/index.html?highlight=writeModelinJSON#src.base.io.python.cobrapy.writeModelinJSON", "id": "218"}, {"name": "writeNewtExperiment", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/newt/index.html?highlight=writeNewtExperiment#src.base.io.newt.writeNewtExperiment", "id": "219"}, {"name": "writePajekNet", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=writePajekNet#src.base.io.utilities.writePajekNet", "id": "220"}, {"name": "writeSBML", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=writeSBML#src.base.io.utilities.writeSBML", "id": "221"}, {"name": "xls2model", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/base/io/utilities/index.html?highlight=xls2model#src.base.io.utilities.xls2model", "id": "222"}] \ No newline at end of file diff --git a/stable/modules/dataIntegration/XomicsToModel/index.html b/stable/modules/dataIntegration/XomicsToModel/index.html index fc4e8702b3..767a524a86 100644 --- a/stable/modules/dataIntegration/XomicsToModel/index.html +++ b/stable/modules/dataIntegration/XomicsToModel/index.html @@ -345,7 +345,7 @@

    The COBRA Toolbox

  • .addSinksexoMet - Logical, should sink reactions be added for metabolites detected in exometabolomic data (if no exchange or sink is already present).

  • .activeGenesApproach -String with the name of the active genes approach will be used

    ‘oneRxnPerActiveGene’ adds at least one reaction per active gene (Default) -‘deleteModelGenes’ adds all reactions corresponding to an active gene (generates a larger model)

    +‘allRxnPerActiveGene’ adds all reactions corresponding to an active gene (generates a larger model)

  • @@ -548,8 +548,8 @@

    The COBRA Toolbox

    • -
      .activeGenesApproach -The different approached to identify the active

      genes (Possible options: ‘deleteModelGenes’ and ‘oneRxnPerActiveGene’; -default: ‘deleteModelGenes’);

      +
      .activeGenesApproach -The different approached to identify the active

      genes (Possible options: ‘allRxnPerActiveGene’ and ‘oneRxnPerActiveGene’; +default: ‘oneRxnPerActiveGene’);

    • diff --git a/stable/modules/reconstruction/refinement/index.html b/stable/modules/reconstruction/refinement/index.html index a8191ad8b5..f3a79071ff 100644 --- a/stable/modules/reconstruction/refinement/index.html +++ b/stable/modules/reconstruction/refinement/index.html @@ -1024,6 +1024,38 @@

      The COBRA Toolbox

    +
    +
    +buildRxn2subSystem(model, removeSubSystems)[source]
    +

    Generates reaction-subSystem matrix for a COBRA model +This function adds two fields to the COBRA model: 1) rxnSubsystemMat and +2)subSystemsNames and removes the old subSystems field(optional and can +be set to false)

    +
    +
    USAGE
    +

    [modelOut, rxn2subSystem, subSystemNames, nestedCells] = buildRxn2subSystem (model, removeSubSystems)

    +
    +
    INPUTS
    +

    model – COBRA model structure

    +
    +
    OPTIONAL INPUTS
    +

    removeSubSystems – Binary variable, if equals to 1 (or true) subSystems +field will be removed from the model default:true

    +
    +
    OUTPUTS
    +
      +
    • modelOut – COBRA model structure containing two added fields of +“rxn2subSystem” and “subSystemsNames”

    • +
    • rxn2subSystem – Matrix of reactions vs subSystems

    • +
    • subSystemNames – Unique sub-system names in the model with order +corrosponding to the matrix

    • +
    • nestedCells – logical variable, True if sub-system field is a +nested cell vector and False if it’s not

    • +
    +
    +
    +
    +
    changeCOBRAConstraints(model, constraintID, varargin)[source]
    @@ -1701,6 +1733,9 @@

    The COBRA Toolbox

    +

    Note: Notice that this function checks if two models are the same, two +same models does not necessary mean two same structures. +use structeq.m to compare two structures

    diff --git a/stable/modules/reconstructionfunctions.json b/stable/modules/reconstructionfunctions.json index ca92988ec6..e0cf4aadb6 100644 --- a/stable/modules/reconstructionfunctions.json +++ b/stable/modules/reconstructionfunctions.json @@ -1 +1 @@ -[{"name": "adaptDraftModelID", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=adaptDraftModelID#src.reconstruction.demeter.src.integration.adaptDraftModelID", "id": "1"}, {"name": "addCOBRAConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addCOBRAConstraints#src.reconstruction.refinement.addCOBRAConstraints", "id": "2"}, {"name": "addCOBRAVariables", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addCOBRAVariables#src.reconstruction.refinement.addCOBRAVariables", "id": "3"}, {"name": "addDemandReaction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addDemandReaction#src.reconstruction.refinement.addDemandReaction", "id": "4"}, {"name": "addExchangeRxn", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addExchangeRxn#src.reconstruction.refinement.addExchangeRxn", "id": "5"}, {"name": "addGenes", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addGenes#src.reconstruction.refinement.addGenes", "id": "6"}, {"name": "addMetabolite", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addMetabolite#src.reconstruction.refinement.addMetabolite", "id": "7"}, {"name": "addmetabolites", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=addmetabolites#src.reconstruction.rBioNet.addmetabolites", "id": "8"}, {"name": "addMetInfo", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=addMetInfo#src.reconstruction.comparison.modelBorgifier.addMetInfo", "id": "9"}, {"name": "addMIRIAMAnnotations", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addMIRIAMAnnotations#src.reconstruction.refinement.addMIRIAMAnnotations", "id": "10"}, {"name": "addmissing", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=addmissing#src.reconstruction.rBioNet.addmissing", "id": "11"}, {"name": "addMultipleMetabolites", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addMultipleMetabolites#src.reconstruction.refinement.addMultipleMetabolites", "id": "12"}, {"name": "addMultipleReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addMultipleReactions#src.reconstruction.refinement.addMultipleReactions", "id": "13"}, {"name": "addMultipleReactionsIT", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addMultipleReactionsIT#src.reconstruction.refinement.addMultipleReactionsIT", "id": "14"}, {"name": "addReaction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addReaction#src.reconstruction.refinement.addReaction", "id": "15"}, {"name": "addReactionGEM", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addReactionGEM#src.reconstruction.refinement.addReactionGEM", "id": "16"}, {"name": "addreactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=addreactions#src.reconstruction.rBioNet.addreactions", "id": "17"}, {"name": "addRefinementComments", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=addRefinementComments#src.reconstruction.demeter.src.refinement.addRefinementComments", "id": "18"}, {"name": "addSinkReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addSinkReactions#src.reconstruction.refinement.addSinkReactions", "id": "19"}, {"name": "addSubSystemsToReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addSubSystemsToReactions#src.reconstruction.refinement.addSubSystemsToReactions", "id": "20"}, {"name": "addToTmodel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=addToTmodel#src.reconstruction.comparison.modelBorgifier.addToTmodel", "id": "21"}, {"name": "alphabetizeModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=alphabetizeModel#src.reconstruction.refinement.alphabetizeModel", "id": "22"}, {"name": "anaerobicGrowthGapfill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=anaerobicGrowthGapfill#src.reconstruction.demeter.src.refinement.anaerobicGrowthGapfill", "id": "23"}, {"name": "AndNode", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=AndNode#src.reconstruction.refinement.GPRLogic.AndNode", "id": "24"}, {"name": "annotateSBOTerms", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=annotateSBOTerms#src.reconstruction.refinement.annotateSBOTerms", "id": "25"}, {"name": "assignGPRA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=assignGPRA#src.reconstruction.refinement.assignGPRA", "id": "26"}, {"name": "assignRxnWeights", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/AuxillaryFiles/index.html?highlight=assignRxnWeights#src.reconstruction.fastGapFill.AuxillaryFiles.assignRxnWeights", "id": "27"}, {"name": "assignSubSystems", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=assignSubSystems#src.reconstruction.refinement.assignSubSystems", "id": "28"}, {"name": "autoMatchReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=autoMatchReactions#src.reconstruction.comparison.modelBorgifier.autoMatchReactions", "id": "29"}, {"name": "balancecheck", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=balancecheck#src.reconstruction.rBioNet.balancecheck", "id": "30"}, {"name": "BalancePrep", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=BalancePrep#src.reconstruction.rBioNet.BalancePrep", "id": "31"}, {"name": "batchTestAllReconstructionFunctions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=batchTestAllReconstructionFunctions#src.reconstruction.demeter.suite.tests.batchTestAllReconstructionFunctions", "id": "32"}, {"name": "buildRxnEquations", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=buildRxnEquations#src.reconstruction.comparison.modelBorgifier.buildRxnEquations", "id": "33"}, {"name": "buildRxnEquationsFromName", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=buildRxnEquationsFromName#src.reconstruction.comparison.modelBorgifier.buildRxnEquationsFromName", "id": "34"}, {"name": "buildTmodel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=buildTmodel#src.reconstruction.comparison.modelBorgifier.buildTmodel", "id": "35"}, {"name": "carbonSourceGapfill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=carbonSourceGapfill#src.reconstruction.demeter.src.refinement.carbonSourceGapfill", "id": "36"}, {"name": "changeCOBRAConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=changeCOBRAConstraints#src.reconstruction.refinement.changeCOBRAConstraints", "id": "37"}, {"name": "changeCOBRAVariable", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=changeCOBRAVariable#src.reconstruction.refinement.changeCOBRAVariable", "id": "38"}, {"name": "changeGeneAssociation", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=changeGeneAssociation#src.reconstruction.refinement.changeGeneAssociation", "id": "39"}, {"name": "changeRxnMets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=changeRxnMets#src.reconstruction.refinement.changeRxnMets", "id": "40"}, {"name": "charpos", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=charpos#src.reconstruction.comparison.modelBorgifier.charpos", "id": "41"}, {"name": "checkBalance", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=checkBalance#src.reconstruction.modelGeneration.massBalance.checkBalance", "id": "42"}, {"name": "checkCobraModelUnique", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=checkCobraModelUnique#src.reconstruction.modelGeneration.checkCobraModelUnique", "id": "43"}, {"name": "checkDatabaseIDs", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelVerification/index.html?highlight=checkDatabaseIDs#src.reconstruction.modelGeneration.modelVerification.checkDatabaseIDs", "id": "44"}, {"name": "checkDuplicateRxn", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=checkDuplicateRxn#src.reconstruction.modelGeneration.checkDuplicateRxn", "id": "45"}, {"name": "checkFluxConsistency", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/fluxConsistency/GREEDY/index.html?highlight=checkFluxConsistency#src.reconstruction.modelGeneration.fluxConsistency.GREEDY.checkFluxConsistency", "id": "46"}, {"name": "checkFormulaValidty", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=checkFormulaValidty#src.reconstruction.modelGeneration.massBalance.checkFormulaValidty", "id": "47"}, {"name": "checkIDsForTypeExist", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=checkIDsForTypeExist#src.reconstruction.refinement.checkIDsForTypeExist", "id": "48"}, {"name": "checkInputData", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=checkInputData#src.reconstruction.demeter.src.integration.checkInputData", "id": "49"}, {"name": "checkMassChargeBalance", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=checkMassChargeBalance#src.reconstruction.modelGeneration.massBalance.checkMassChargeBalance", "id": "50"}, {"name": "checkModelPreFBA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=checkModelPreFBA#src.reconstruction.modelGeneration.checkModelPreFBA", "id": "51"}, {"name": "checkModelProperties", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelProperties/index.html?highlight=checkModelProperties#src.reconstruction.modelGeneration.modelProperties.checkModelProperties", "id": "52"}, {"name": "checkObjective", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=checkObjective#src.reconstruction.modelGeneration.checkObjective", "id": "53"}, {"name": "checkPresentFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelVerification/index.html?highlight=checkPresentFields#src.reconstruction.modelGeneration.modelVerification.checkPresentFields", "id": "54"}, {"name": "checkStoichiometricConsistency", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=checkStoichiometricConsistency#src.reconstruction.modelGeneration.stoichConsistency.checkStoichiometricConsistency", "id": "55"}, {"name": "cleanTmodel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=cleanTmodel#src.reconstruction.comparison.modelBorgifier.cleanTmodel", "id": "56"}, {"name": "closeGUI", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=closeGUI#src.reconstruction.rBioNet.closeGUI", "id": "57"}, {"name": "colText", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=colText#src.reconstruction.comparison.modelBorgifier.colText", "id": "58"}, {"name": "combineChildren", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=combineChildren#src.reconstruction.refinement.GPRLogic.combineChildren", "id": "59"}, {"name": "compareAllMets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=compareAllMets#src.reconstruction.comparison.modelBorgifier.compareAllMets", "id": "60"}, {"name": "compareCbModels", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=compareCbModels#src.reconstruction.comparison.modelBorgifier.compareCbModels", "id": "61"}, {"name": "compareMatricies", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=compareMatricies#src.reconstruction.comparison.modelBorgifier.compareMatricies", "id": "62"}, {"name": "compareModels", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/index.html?highlight=compareModels#src.reconstruction.comparison.compareModels", "id": "63"}, {"name": "compareVersions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/reports/index.html?highlight=compareVersions#src.reconstruction.demeter.suite.reports.compareVersions", "id": "64"}, {"name": "compartment", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=compartment#src.reconstruction.rBioNet.compartment", "id": "65"}, {"name": "computeElementalMatrix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=computeElementalMatrix#src.reconstruction.modelGeneration.massBalance.computeElementalMatrix", "id": "66"}, {"name": "computeFluxConsistentReactionPresence", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=computeFluxConsistentReactionPresence#src.reconstruction.demeter.src.properties.computeFluxConsistentReactionPresence", "id": "67"}, {"name": "computeInternalMetaboliteProduction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=computeInternalMetaboliteProduction#src.reconstruction.demeter.src.properties.computeInternalMetaboliteProduction", "id": "68"}, {"name": "computeMetabolicDistance", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=computeMetabolicDistance#src.reconstruction.demeter.src.properties.computeMetabolicDistance", "id": "69"}, {"name": "computeMetFormulae", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=computeMetFormulae#src.reconstruction.modelGeneration.massBalance.computeMetFormulae", "id": "70"}, {"name": "computeModelProperties", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=computeModelProperties#src.reconstruction.demeter.src.properties.computeModelProperties", "id": "71"}, {"name": "computeReconstructionFeatures", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=computeReconstructionFeatures#src.reconstruction.demeter.src.properties.computeReconstructionFeatures", "id": "72"}, {"name": "computeUptakeSecretion", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=computeUptakeSecretion#src.reconstruction.demeter.src.properties.computeUptakeSecretion", "id": "73"}, {"name": "conditionSpecificGapFilling", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=conditionSpecificGapFilling#src.reconstruction.demeter.src.debugging.conditionSpecificGapFilling", "id": "74"}, {"name": "connectRxnGapfilling", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=connectRxnGapfilling#src.reconstruction.demeter.src.refinement.connectRxnGapfilling", "id": "75"}, {"name": "convertIrrevFluxDistribution", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=convertIrrevFluxDistribution#src.reconstruction.refinement.convertIrrevFluxDistribution", "id": "76"}, {"name": "convertToIrreversible", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=convertToIrreversible#src.reconstruction.refinement.convertToIrreversible", "id": "77"}, {"name": "convertToReversible", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=convertToReversible#src.reconstruction.refinement.convertToReversible", "id": "78"}, {"name": "countC", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=countC#src.reconstruction.comparison.modelBorgifier.countC", "id": "79"}, {"name": "CreateGPR", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=CreateGPR#src.reconstruction.rBioNet.CreateGPR", "id": "80"}, {"name": "createModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=createModel#src.reconstruction.refinement.createModel", "id": "81"}, {"name": "createPeriplasmaticSpace", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=createPeriplasmaticSpace#src.reconstruction.demeter.src.refinement.createPeriplasmaticSpace", "id": "82"}, {"name": "createRBioNetDBFromVMHDB", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=createRBioNetDBFromVMHDB#src.reconstruction.demeter.src.integration.createRBioNetDBFromVMHDB", "id": "83"}, {"name": "createSBMLFiles", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=createSBMLFiles#src.reconstruction.demeter.src.refinement.createSBMLFiles", "id": "84"}, {"name": "createUniversalReactionModel2", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/AuxillaryFiles/index.html?highlight=createUniversalReactionModel2#src.reconstruction.fastGapFill.AuxillaryFiles.createUniversalReactionModel2", "id": "85"}, {"name": "createXMatrix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=createXMatrix#src.reconstruction.refinement.createXMatrix", "id": "86"}, {"name": "createXMatrix2", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/AuxillaryFiles/index.html?highlight=createXMatrix2#src.reconstruction.fastGapFill.AuxillaryFiles.createXMatrix2", "id": "87"}, {"name": "curateAgainstBacDiveData", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=curateAgainstBacDiveData#src.reconstruction.demeter.src.refinement.curateAgainstBacDiveData", "id": "88"}, {"name": "curateGrowthRequirements", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=curateGrowthRequirements#src.reconstruction.demeter.src.refinement.curateGrowthRequirements", "id": "89"}, {"name": "data2model", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=data2model#src.reconstruction.rBioNet.data2model", "id": "90"}, {"name": "debugCouplingConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=debugCouplingConstraints#src.reconstruction.demeter.src.debugging.debugCouplingConstraints", "id": "91"}, {"name": "debugModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=debugModel#src.reconstruction.demeter.src.debugging.debugModel", "id": "92"}, {"name": "deleteSeedGapfilledReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=deleteSeedGapfilledReactions#src.reconstruction.demeter.src.refinement.deleteSeedGapfilledReactions", "id": "93"}, {"name": "detectDeadEnds", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=detectDeadEnds#src.reconstruction.modelGeneration.detectDeadEnds", "id": "94"}, {"name": "dispStoichAsTable", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=dispStoichAsTable#src.reconstruction.refinement.dispStoichAsTable", "id": "95"}, {"name": "doubleCheckGapfilledReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=doubleCheckGapfilledReactions#src.reconstruction.demeter.src.refinement.doubleCheckGapfilledReactions", "id": "96"}, {"name": "elementalMatrixToFormulae", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=elementalMatrixToFormulae#src.reconstruction.modelGeneration.massBalance.elementalMatrixToFormulae", "id": "97"}, {"name": "extendModelFieldsForType", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=extendModelFieldsForType#src.reconstruction.refinement.extendModelFieldsForType", "id": "98"}, {"name": "extractCompModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=extractCompModel#src.reconstruction.refinement.extractCompModel", "id": "99"}, {"name": "extractMetModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=extractMetModel#src.reconstruction.refinement.extractMetModel", "id": "100"}, {"name": "extractReconstructionResourceSubset", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=extractReconstructionResourceSubset#src.reconstruction.demeter.src.properties.extractReconstructionResourceSubset", "id": "101"}, {"name": "extractSubNetwork", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=extractSubNetwork#src.reconstruction.refinement.extractSubNetwork", "id": "102"}, {"name": "extractSubSysModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=extractSubSysModel#src.reconstruction.refinement.extractSubSysModel", "id": "103"}, {"name": "fastcc_nonconvex", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/fluxConsistency/DCA/index.html?highlight=fastcc_nonconvex#src.reconstruction.modelGeneration.fluxConsistency.DCA.fastcc_nonconvex", "id": "104"}, {"name": "fastGapFill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=fastGapFill#src.reconstruction.fastGapFill.fastGapFill", "id": "105"}, {"name": "fastLeakTest", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=fastLeakTest#src.reconstruction.modelGeneration.fastLeakTest", "id": "106"}, {"name": "fermentationPathwayGapfill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=fermentationPathwayGapfill#src.reconstruction.demeter.src.refinement.fermentationPathwayGapfill", "id": "107"}, {"name": "findFluxConsistentSubset", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/fluxConsistency/index.html?highlight=findFluxConsistentSubset#src.reconstruction.modelGeneration.fluxConsistency.findFluxConsistentSubset", "id": "108"}, {"name": "findFutileCycle", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=findFutileCycle#src.reconstruction.demeter.src.debugging.findFutileCycle", "id": "109"}, {"name": "findIntracellularRxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/AuxillaryFiles/index.html?highlight=findIntracellularRxns#src.reconstruction.fastGapFill.AuxillaryFiles.findIntracellularRxns", "id": "110"}, {"name": "findMassLeaksAndSiphons", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=findMassLeaksAndSiphons#src.reconstruction.modelGeneration.stoichConsistency.findMassLeaksAndSiphons", "id": "111"}, {"name": "findMetMatch", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=findMetMatch#src.reconstruction.comparison.modelBorgifier.findMetMatch", "id": "112"}, {"name": "findMinimalLeakageMode", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=findMinimalLeakageMode#src.reconstruction.modelGeneration.stoichConsistency.findMinimalLeakageMode", "id": "113"}, {"name": "findMinimalLeakageModeMet", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=findMinimalLeakageModeMet#src.reconstruction.modelGeneration.stoichConsistency.findMinimalLeakageModeMet", "id": "114"}, {"name": "findMinimalLeakageModeRxn", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=findMinimalLeakageModeRxn#src.reconstruction.modelGeneration.stoichConsistency.findMinimalLeakageModeRxn", "id": "115"}, {"name": "findRxnMatch", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=findRxnMatch#src.reconstruction.comparison.modelBorgifier.findRxnMatch", "id": "116"}, {"name": "findSExRxnInd", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=findSExRxnInd#src.reconstruction.modelGeneration.massBalance.findSExRxnInd", "id": "117"}, {"name": "findStoichConsistentSubset", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=findStoichConsistentSubset#src.reconstruction.modelGeneration.stoichConsistency.findStoichConsistentSubset", "id": "118"}, {"name": "findTransportersWithoutExchanges", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=findTransportersWithoutExchanges#src.reconstruction.demeter.src.refinement.findTransportersWithoutExchanges", "id": "119"}, {"name": "findUnusedExchangeReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=findUnusedExchangeReactions#src.reconstruction.demeter.src.refinement.findUnusedExchangeReactions", "id": "120"}, {"name": "fixChemFormulas", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=fixChemFormulas#src.reconstruction.comparison.modelBorgifier.fixChemFormulas", "id": "121"}, {"name": "fixNames", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=fixNames#src.reconstruction.comparison.modelBorgifier.fixNames", "id": "122"}, {"name": "flipRxnOrientation", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=flipRxnOrientation#src.reconstruction.refinement.flipRxnOrientation", "id": "123"}, {"name": "formula2mets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=formula2mets#src.reconstruction.rBioNet.formula2mets", "id": "124"}, {"name": "FormulaParser", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=FormulaParser#src.reconstruction.refinement.GPRLogic.FormulaParser", "id": "125"}, {"name": "gapfillRefinedGenomeReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=gapfillRefinedGenomeReactions#src.reconstruction.demeter.src.integration.gapfillRefinedGenomeReactions", "id": "126"}, {"name": "gapFind", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/index.html?highlight=gapFind#src.reconstruction..gapFind", "id": "127"}, {"name": "generateMetaboReport", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/metaboRePort/index.html?highlight=generateMetaboReport#src.reconstruction.metaboRePort.generateMetaboReport", "id": "128"}, {"name": "generateMetaboScore", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/metaboRePort/index.html?highlight=generateMetaboScore#src.reconstruction.metaboRePort.generateMetaboScore", "id": "129"}, {"name": "generateRules", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=generateRules#src.reconstruction.refinement.generateRules", "id": "130"}, {"name": "generateSUXComp", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/AuxillaryFiles/index.html?highlight=generateSUXComp#src.reconstruction.fastGapFill.AuxillaryFiles.generateSUXComp", "id": "131"}, {"name": "generateSUXMatrix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=generateSUXMatrix#src.reconstruction.fastGapFill.generateSUXMatrix", "id": "132"}, {"name": "GenesAndReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=GenesAndReactions#src.reconstruction.rBioNet.GenesAndReactions", "id": "133"}, {"name": "GenesReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=GenesReactions#src.reconstruction.rBioNet.GenesReactions", "id": "134"}, {"name": "getCurationStatus", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=getCurationStatus#src.reconstruction.demeter.src.integration.getCurationStatus", "id": "135"}, {"name": "getElementalComposition", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=getElementalComposition#src.reconstruction.modelGeneration.massBalance.getElementalComposition", "id": "136"}, {"name": "getEmptyConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=getEmptyConstraints#src.reconstruction.refinement.getEmptyConstraints", "id": "137"}, {"name": "getgenelist", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=getgenelist#src.reconstruction.rBioNet.getgenelist", "id": "138"}, {"name": "getIDPositions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=getIDPositions#src.reconstruction.refinement.getIDPositions", "id": "139"}, {"name": "getMetAbbr", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=getMetAbbr#src.reconstruction.refinement.getMetAbbr", "id": "140"}, {"name": "getModelFieldsForType", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=getModelFieldsForType#src.reconstruction.refinement.getModelFieldsForType", "id": "141"}, {"name": "getReactionMetabolitePresence", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=getReactionMetabolitePresence#src.reconstruction.demeter.src.properties.getReactionMetabolitePresence", "id": "142"}, {"name": "getSubsystemPresence", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=getSubsystemPresence#src.reconstruction.demeter.src.properties.getSubsystemPresence", "id": "143"}, {"name": "getUnannotatedReactionsFromPubSeedSpreadsheets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=getUnannotatedReactionsFromPubSeedSpreadsheets#src.reconstruction.demeter.src.integration.getUnannotatedReactionsFromPubSeedSpreadsheets", "id": "144"}, {"name": "GPR2Genes", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=GPR2Genes#src.reconstruction.rBioNet.GPR2Genes", "id": "145"}, {"name": "growthExpMatch", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/growthExpMatch/index.html?highlight=growthExpMatch#src.reconstruction.growthExpMatch.growthExpMatch", "id": "146"}, {"name": "identifyBlockedRxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=identifyBlockedRxns#src.reconstruction.fastGapFill.identifyBlockedRxns", "id": "147"}, {"name": "identifyFutileCycles", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=identifyFutileCycles#src.reconstruction.demeter.src.debugging.identifyFutileCycles", "id": "148"}, {"name": "ismatlab", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=ismatlab#src.reconstruction.comparison.modelBorgifier.ismatlab", "id": "149"}, {"name": "ispolymer", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=ispolymer#src.reconstruction.modelGeneration.massBalance.ispolymer", "id": "150"}, {"name": "isSameCobraModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=isSameCobraModel#src.reconstruction.refinement.isSameCobraModel", "id": "151"}, {"name": "Keep_reactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=Keep_reactions#src.reconstruction.rBioNet.Keep_reactions", "id": "152"}, {"name": "keepCompartment", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=keepCompartment#src.reconstruction.refinement.keepCompartment", "id": "153"}, {"name": "leakTest", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=leakTest#src.reconstruction.modelGeneration.stoichConsistency.leakTest", "id": "154"}, {"name": "LegalRxnFormula", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=LegalRxnFormula#src.reconstruction.rBioNet.LegalRxnFormula", "id": "155"}, {"name": "LiteralNode", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=LiteralNode#src.reconstruction.refinement.GPRLogic.LiteralNode", "id": "156"}, {"name": "load_reaction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=load_reaction#src.reconstruction.rBioNet.load_reaction", "id": "157"}, {"name": "LoadReaction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=LoadReaction#src.reconstruction.rBioNet.LoadReaction", "id": "158"}, {"name": "loadVMHDatabase", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=loadVMHDatabase#src.reconstruction.demeter.src.integration.loadVMHDatabase", "id": "159"}, {"name": "LP9weighted", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/AuxillaryFiles/index.html?highlight=LP9weighted#src.reconstruction.fastGapFill.AuxillaryFiles.LP9weighted", "id": "160"}, {"name": "makeModelPropertiesTable", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelProperties/index.html?highlight=makeModelPropertiesTable#src.reconstruction.modelGeneration.modelProperties.makeModelPropertiesTable", "id": "161"}, {"name": "makeNamesUnique", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=makeNamesUnique#src.reconstruction.comparison.modelBorgifier.makeNamesUnique", "id": "162"}, {"name": "mapKBaseToVMHReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=mapKBaseToVMHReactions#src.reconstruction.demeter.src.integration.mapKBaseToVMHReactions", "id": "163"}, {"name": "mapMatch", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=mapMatch#src.reconstruction.comparison.modelBorgifier.mapMatch", "id": "164"}, {"name": "mapMediumData2AGORA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=mapMediumData2AGORA#src.reconstruction.demeter.src.integration.mapMediumData2AGORA", "id": "165"}, {"name": "maxCardinalityConservationVector", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=maxCardinalityConservationVector#src.reconstruction.modelGeneration.stoichConsistency.maxCardinalityConservationVector", "id": "166"}, {"name": "maxEntConsVector", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=maxEntConsVector#src.reconstruction.modelGeneration.stoichConsistency.maxEntConsVector", "id": "167"}, {"name": "mergeModelFieldPositions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=mergeModelFieldPositions#src.reconstruction.refinement.mergeModelFieldPositions", "id": "168"}, {"name": "mergeModelsBorg", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=mergeModelsBorg#src.reconstruction.comparison.modelBorgifier.mergeModelsBorg", "id": "169"}, {"name": "mergeTrxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=mergeTrxns#src.reconstruction.comparison.modelBorgifier.mergeTrxns", "id": "170"}, {"name": "mergeTwoModels", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=mergeTwoModels#src.reconstruction.refinement.mergeTwoModels", "id": "171"}, {"name": "met_charge_formula", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=met_charge_formula#src.reconstruction.rBioNet.met_charge_formula", "id": "172"}, {"name": "metabolites_in_database", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=metabolites_in_database#src.reconstruction.rBioNet.metabolites_in_database", "id": "173"}, {"name": "metCompare", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=metCompare#src.reconstruction.comparison.modelBorgifier.metCompare", "id": "174"}, {"name": "metCompareGUI", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=metCompareGUI#src.reconstruction.comparison.modelBorgifier.metCompareGUI", "id": "175"}, {"name": "mets2str", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=mets2str#src.reconstruction.rBioNet.mets2str", "id": "176"}, {"name": "minCardinalityConservationRelaxationVector", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=minCardinalityConservationRelaxationVector#src.reconstruction.modelGeneration.stoichConsistency.minCardinalityConservationRelaxationVector", "id": "177"}, {"name": "model2data", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=model2data#src.reconstruction.rBioNet.model2data", "id": "178"}, {"name": "model2text", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=model2text#src.reconstruction.rBioNet.model2text", "id": "179"}, {"name": "model_description", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=model_description#src.reconstruction.rBioNet.model_description", "id": "180"}, {"name": "model_stats", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=model_stats#src.reconstruction.rBioNet.model_stats", "id": "181"}, {"name": "moveRxn", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=moveRxn#src.reconstruction.refinement.moveRxn", "id": "182"}, {"name": "neighborRxn2data", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=neighborRxn2data#src.reconstruction.rBioNet.neighborRxn2data", "id": "183"}, {"name": "newCompsNewMets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=newCompsNewMets#src.reconstruction.comparison.modelBorgifier.newCompsNewMets", "id": "184"}, {"name": "Node", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=Node#src.reconstruction.refinement.GPRLogic.Node", "id": "185"}, {"name": "NormaliseGPRs", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=NormaliseGPRs#src.reconstruction.refinement.GPRLogic.NormaliseGPRs", "id": "186"}, {"name": "numAtomsOfElementInFormula", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=numAtomsOfElementInFormula#src.reconstruction.modelGeneration.massBalance.numAtomsOfElementInFormula", "id": "187"}, {"name": "optimalConservationVectors", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=optimalConservationVectors#src.reconstruction.modelGeneration.stoichConsistency.optimalConservationVectors", "id": "188"}, {"name": "optimalScores", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=optimalScores#src.reconstruction.comparison.modelBorgifier.optimalScores", "id": "189"}, {"name": "optWeightExp", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=optWeightExp#src.reconstruction.comparison.modelBorgifier.optWeightExp", "id": "190"}, {"name": "optWeightLin", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=optWeightLin#src.reconstruction.comparison.modelBorgifier.optWeightLin", "id": "191"}, {"name": "orderModelFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=orderModelFields#src.reconstruction.refinement.orderModelFields", "id": "192"}, {"name": "orderModelFieldsBorg", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=orderModelFieldsBorg#src.reconstruction.comparison.modelBorgifier.orderModelFieldsBorg", "id": "193"}, {"name": "organizeModelCool", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=organizeModelCool#src.reconstruction.comparison.modelBorgifier.organizeModelCool", "id": "194"}, {"name": "OrNode", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=OrNode#src.reconstruction.refinement.GPRLogic.OrNode", "id": "195"}, {"name": "parseNCBItaxonomy", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=parseNCBItaxonomy#src.reconstruction.demeter.src.integration.parseNCBItaxonomy", "id": "196"}, {"name": "performDataDrivenRefinement", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=performDataDrivenRefinement#src.reconstruction.demeter.src.refinement.performDataDrivenRefinement", "id": "197"}, {"name": "pHbalanceProtons", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=pHbalanceProtons#src.reconstruction.modelGeneration.massBalance.pHbalanceProtons", "id": "198"}, {"name": "plotATPTestResults", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=plotATPTestResults#src.reconstruction.demeter.suite.tests.plotATPTestResults", "id": "199"}, {"name": "plotBiomassTestResults", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=plotBiomassTestResults#src.reconstruction.demeter.suite.tests.plotBiomassTestResults", "id": "200"}, {"name": "plotMetaboliteProducersConsumers", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=plotMetaboliteProducersConsumers#src.reconstruction.demeter.src.properties.plotMetaboliteProducersConsumers", "id": "201"}, {"name": "plotModelConsistency", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelProperties/index.html?highlight=plotModelConsistency#src.reconstruction.modelGeneration.modelProperties.plotModelConsistency", "id": "202"}, {"name": "plotTestSuiteResults", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=plotTestSuiteResults#src.reconstruction.demeter.suite.tests.plotTestSuiteResults", "id": "203"}, {"name": "populateModelwithRxnIDs", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/metaboRePort/index.html?highlight=populateModelwithRxnIDs#src.reconstruction.metaboRePort.populateModelwithRxnIDs", "id": "204"}, {"name": "populateModelwithRxnIDs", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/metaboRePort/other/index.html?highlight=populateModelwithRxnIDs#src.reconstruction.metaboRePort.other.populateModelwithRxnIDs", "id": "205"}, {"name": "postProcessGapFillSolutions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=postProcessGapFillSolutions#src.reconstruction.fastGapFill.postProcessGapFillSolutions", "id": "206"}, {"name": "predictGrowthRequirements", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=predictGrowthRequirements#src.reconstruction.demeter.src.properties.predictGrowthRequirements", "id": "207"}, {"name": "prepareFastGapFill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=prepareFastGapFill#src.reconstruction.fastGapFill.prepareFastGapFill", "id": "208"}, {"name": "prepareInputData", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=prepareInputData#src.reconstruction.demeter.src.integration.prepareInputData", "id": "209"}, {"name": "printBiomass", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelProperties/index.html?highlight=printBiomass#src.reconstruction.modelGeneration.modelProperties.printBiomass", "id": "210"}, {"name": "printMinimalLeakageMode", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=printMinimalLeakageMode#src.reconstruction.modelGeneration.stoichConsistency.printMinimalLeakageMode", "id": "211"}, {"name": "printObjective", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=printObjective#src.reconstruction.modelGeneration.printObjective", "id": "212"}, {"name": "printReconstructionContent", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=printReconstructionContent#src.reconstruction.demeter.src.properties.printReconstructionContent", "id": "213"}, {"name": "printRefinedModelIDs", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=printRefinedModelIDs#src.reconstruction.demeter.src.integration.printRefinedModelIDs", "id": "214"}, {"name": "printRefinementReport", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/reports/index.html?highlight=printRefinementReport#src.reconstruction.demeter.suite.reports.printRefinementReport", "id": "215"}, {"name": "printSolutionGEM", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/growthExpMatch/index.html?highlight=printSolutionGEM#src.reconstruction.growthExpMatch.printSolutionGEM", "id": "216"}, {"name": "producetSNEPlots", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=producetSNEPlots#src.reconstruction.demeter.src.properties.producetSNEPlots", "id": "217"}, {"name": "propagateKBaseMetTranslationToRxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=propagateKBaseMetTranslationToRxns#src.reconstruction.demeter.src.integration.propagateKBaseMetTranslationToRxns", "id": "218"}, {"name": "putrefactionPathwaysGapfilling", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=putrefactionPathwaysGapfilling#src.reconstruction.demeter.src.refinement.putrefactionPathwaysGapfilling", "id": "219"}, {"name": "rankFeaturesByIncidence", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=rankFeaturesByIncidence#src.reconstruction.demeter.src.properties.rankFeaturesByIncidence", "id": "220"}, {"name": "rBioNet_search", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=rBioNet_search#src.reconstruction.rBioNet.rBioNet_search", "id": "221"}, {"name": "rBioNetAbout", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=rBioNetAbout#src.reconstruction.rBioNet.rBioNetAbout", "id": "222"}, {"name": "rBioNetSaveLoad", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=rBioNetSaveLoad#src.reconstruction.rBioNet.rBioNetSaveLoad", "id": "223"}, {"name": "rBioNetSettings", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=rBioNetSettings#src.reconstruction.rBioNet.rBioNetSettings", "id": "224"}, {"name": "ReactionChecks", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=ReactionChecks#src.reconstruction.rBioNet.ReactionChecks", "id": "225"}, {"name": "reactionCompare", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=reactionCompare#src.reconstruction.comparison.modelBorgifier.reactionCompare", "id": "226"}, {"name": "reactionCompareGUI", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=reactionCompareGUI#src.reconstruction.comparison.modelBorgifier.reactionCompareGUI", "id": "227"}, {"name": "ReactionEq", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=ReactionEq#src.reconstruction.rBioNet.ReactionEq", "id": "228"}, {"name": "readCbTmodel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=readCbTmodel#src.reconstruction.comparison.modelBorgifier.readCbTmodel", "id": "229"}, {"name": "readInputTableForPipeline", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=readInputTableForPipeline#src.reconstruction.demeter.src.integration.readInputTableForPipeline", "id": "230"}, {"name": "reassignFwBwMatch", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=reassignFwBwMatch#src.reconstruction.refinement.reassignFwBwMatch", "id": "231"}, {"name": "rebuildBiomassReaction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=rebuildBiomassReaction#src.reconstruction.demeter.src.refinement.rebuildBiomassReaction", "id": "232"}, {"name": "rebuildModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=rebuildModel#src.reconstruction.demeter.src.refinement.rebuildModel", "id": "233"}, {"name": "ReconstructionCreator", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=ReconstructionCreator#src.reconstruction.rBioNet.ReconstructionCreator", "id": "234"}, {"name": "ReconstructionTool", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=ReconstructionTool#src.reconstruction.rBioNet.ReconstructionTool", "id": "235"}, {"name": "reduceModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=reduceModel#src.reconstruction.refinement.reduceModel", "id": "236"}, {"name": "refineGenomeAnnotation", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=refineGenomeAnnotation#src.reconstruction.demeter.src.refinement.refineGenomeAnnotation", "id": "237"}, {"name": "refinementPipeline", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=refinementPipeline#src.reconstruction.demeter.src.refinement.refinementPipeline", "id": "238"}, {"name": "regulariseModelFormulae", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=regulariseModelFormulae#src.reconstruction.modelGeneration.massBalance.regulariseModelFormulae", "id": "239"}, {"name": "removeCOBRAConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeCOBRAConstraints#src.reconstruction.refinement.removeCOBRAConstraints", "id": "240"}, {"name": "removeCompartments", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=removeCompartments#src.reconstruction.modelGeneration.removeCompartments", "id": "241"}, {"name": "removeDeadEnds", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=removeDeadEnds#src.reconstruction.modelGeneration.removeDeadEnds", "id": "242"}, {"name": "removeDuplicateNames", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=removeDuplicateNames#src.reconstruction.comparison.modelBorgifier.removeDuplicateNames", "id": "243"}, {"name": "removeFieldEntriesForType", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeFieldEntriesForType#src.reconstruction.refinement.removeFieldEntriesForType", "id": "244"}, {"name": "removeFutileCycles", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=removeFutileCycles#src.reconstruction.demeter.src.debugging.removeFutileCycles", "id": "245"}, {"name": "removeGenesFromModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeGenesFromModel#src.reconstruction.refinement.removeGenesFromModel", "id": "246"}, {"name": "removeMetabolites", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeMetabolites#src.reconstruction.refinement.removeMetabolites", "id": "247"}, {"name": "removeProblematicCharacters", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=removeProblematicCharacters#src.reconstruction.comparison.modelBorgifier.removeProblematicCharacters", "id": "248"}, {"name": "removeRxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeRxns#src.reconstruction.refinement.removeRxns", "id": "249"}, {"name": "removeSubSystemsFromRxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeSubSystemsFromRxns#src.reconstruction.refinement.removeSubSystemsFromRxns", "id": "250"}, {"name": "removeTrivialStoichiometry", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeTrivialStoichiometry#src.reconstruction.refinement.removeTrivialStoichiometry", "id": "251"}, {"name": "removeUnannotatedReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=removeUnannotatedReactions#src.reconstruction.demeter.src.refinement.removeUnannotatedReactions", "id": "252"}, {"name": "removeUnusedGenes", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeUnusedGenes#src.reconstruction.refinement.removeUnusedGenes", "id": "253"}, {"name": "reportPDF", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/reports/index.html?highlight=reportPDF#src.reconstruction.demeter.suite.reports.reportPDF", "id": "254"}, {"name": "rowvector", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=rowvector#src.reconstruction.comparison.modelBorgifier.rowvector", "id": "255"}, {"name": "runDebuggingTools", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=runDebuggingTools#src.reconstruction.demeter.src.debugging.runDebuggingTools", "id": "256"}, {"name": "runDemeter", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=runDemeter#src.reconstruction.demeter.src.refinement.runDemeter", "id": "257"}, {"name": "runGapfillingFunctions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=runGapfillingFunctions#src.reconstruction.demeter.src.debugging.runGapfillingFunctions", "id": "258"}, {"name": "runTestsOnModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=runTestsOnModel#src.reconstruction.demeter.suite.tests.runTestsOnModel", "id": "259"}, {"name": "runTestSuiteTools", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=runTestSuiteTools#src.reconstruction.demeter.suite.tests.runTestSuiteTools", "id": "260"}, {"name": "secretionProductGapfill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=secretionProductGapfill#src.reconstruction.demeter.src.refinement.secretionProductGapfill", "id": "261"}, {"name": "setConstraintsIrrevModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=setConstraintsIrrevModel#src.reconstruction.modelGeneration.setConstraintsIrrevModel", "id": "262"}, {"name": "setRxnSubSystems", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=setRxnSubSystems#src.reconstruction.refinement.setRxnSubSystems", "id": "263"}, {"name": "sim_general", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=sim_general#src.reconstruction.rBioNet.sim_general", "id": "264"}, {"name": "similarities", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=similarities#src.reconstruction.rBioNet.similarities", "id": "265"}, {"name": "similarity", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=similarity#src.reconstruction.rBioNet.similarity", "id": "266"}, {"name": "submitGapFill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=submitGapFill#src.reconstruction.fastGapFill.submitGapFill", "id": "267"}, {"name": "summarizeFeaturesOnTaxonLevels", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=summarizeFeaturesOnTaxonLevels#src.reconstruction.demeter.src.properties.summarizeFeaturesOnTaxonLevels", "id": "268"}, {"name": "swiftGapFill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=swiftGapFill#src.reconstruction.fastGapFill.swiftGapFill", "id": "269"}, {"name": "targetedGapFilling", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=targetedGapFilling#src.reconstruction.demeter.src.debugging.targetedGapFilling", "id": "270"}, {"name": "test4HumanFctExt", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=test4HumanFctExt#src.reconstruction.modelGeneration.test4HumanFctExt", "id": "271"}, {"name": "testAromaticAADegradation", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testAromaticAADegradation#src.reconstruction.demeter.suite.tests.testAromaticAADegradation", "id": "272"}, {"name": "testATP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testATP#src.reconstruction.demeter.suite.tests.testATP", "id": "273"}, {"name": "testATPYieldFromCsources", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=testATPYieldFromCsources#src.reconstruction.modelGeneration.testATPYieldFromCsources", "id": "274"}, {"name": "testBileAcidBiosynthesis", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testBileAcidBiosynthesis#src.reconstruction.demeter.suite.tests.testBileAcidBiosynthesis", "id": "275"}, {"name": "testCarbonSources", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testCarbonSources#src.reconstruction.demeter.suite.tests.testCarbonSources", "id": "276"}, {"name": "testDrugMetabolism", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testDrugMetabolism#src.reconstruction.demeter.suite.tests.testDrugMetabolism", "id": "277"}, {"name": "testFermentationProducts", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testFermentationProducts#src.reconstruction.demeter.suite.tests.testFermentationProducts", "id": "278"}, {"name": "testFluxConsistency", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/fluxConsistency/GREEDY/index.html?highlight=testFluxConsistency#src.reconstruction.modelGeneration.fluxConsistency.GREEDY.testFluxConsistency", "id": "279"}, {"name": "testGeneRules", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testGeneRules#src.reconstruction.demeter.suite.tests.testGeneRules", "id": "280"}, {"name": "testGrowth", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testGrowth#src.reconstruction.demeter.suite.tests.testGrowth", "id": "281"}, {"name": "testGrowthOnDefinedMedia", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testGrowthOnDefinedMedia#src.reconstruction.demeter.suite.tests.testGrowthOnDefinedMedia", "id": "282"}, {"name": "testInputFiles", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testInputFiles#src.reconstruction.demeter.suite.tests.testInputFiles", "id": "283"}, {"name": "testLeakingMetabolites", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testLeakingMetabolites#src.reconstruction.demeter.suite.tests.testLeakingMetabolites", "id": "284"}, {"name": "testMetaboliteUptake", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testMetaboliteUptake#src.reconstruction.demeter.suite.tests.testMetaboliteUptake", "id": "285"}, {"name": "testModelMassChargeBalance", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testModelMassChargeBalance#src.reconstruction.demeter.suite.tests.testModelMassChargeBalance", "id": "286"}, {"name": "testPathway", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/index.html?highlight=testPathway#src.reconstruction..testPathway", "id": "287"}, {"name": "testPutrefactionPathways", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testPutrefactionPathways#src.reconstruction.demeter.suite.tests.testPutrefactionPathways", "id": "288"}, {"name": "testRefinedReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testRefinedReactions#src.reconstruction.demeter.suite.tests.testRefinedReactions", "id": "289"}, {"name": "testSecretionProducts", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testSecretionProducts#src.reconstruction.demeter.suite.tests.testSecretionProducts", "id": "290"}, {"name": "TmodelFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=TmodelFields#src.reconstruction.comparison.modelBorgifier.TmodelFields", "id": "291"}, {"name": "TmodelStats", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=TmodelStats#src.reconstruction.comparison.modelBorgifier.TmodelStats", "id": "292"}, {"name": "translateDraftReconstruction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=translateDraftReconstruction#src.reconstruction.demeter.src.refinement.translateDraftReconstruction", "id": "293"}, {"name": "translateKBaseModel2VMHModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=translateKBaseModel2VMHModel#src.reconstruction.demeter.src.refinement.translateKBaseModel2VMHModel", "id": "294"}, {"name": "translateKBaseToVMHMets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=translateKBaseToVMHMets#src.reconstruction.demeter.src.integration.translateKBaseToVMHMets", "id": "295"}, {"name": "tutorial_MetaboRePort", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/metaboRePort/index.html?highlight=tutorial_MetaboRePort#src.reconstruction.metaboRePort.tutorial_MetaboRePort", "id": "296"}, {"name": "tutorial_MetaboRePort_m", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/metaboRePort/index.html?highlight=tutorial_MetaboRePort_m#src.reconstruction.metaboRePort.tutorial_MetaboRePort_m", "id": "297"}, {"name": "unbalanced", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=unbalanced#src.reconstruction.rBioNet.unbalanced", "id": "298"}, {"name": "untargetedGapFilling", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=untargetedGapFilling#src.reconstruction.demeter.src.debugging.untargetedGapFilling", "id": "299"}, {"name": "updateFieldOrderForType", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=updateFieldOrderForType#src.reconstruction.refinement.updateFieldOrderForType", "id": "300"}, {"name": "updateGenes", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=updateGenes#src.reconstruction.refinement.updateGenes", "id": "301"}, {"name": "updateMetNames", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=updateMetNames#src.reconstruction.refinement.updateMetNames", "id": "302"}, {"name": "uptakeMetaboliteGapfill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=uptakeMetaboliteGapfill#src.reconstruction.demeter.src.refinement.uptakeMetaboliteGapfill", "id": "303"}, {"name": "validateCompartments", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=validateCompartments#src.reconstruction.demeter.suite.tests.validateCompartments", "id": "304"}, {"name": "verifyGapfilledReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=verifyGapfilledReactions#src.reconstruction.demeter.src.debugging.verifyGapfilledReactions", "id": "305"}, {"name": "verifyModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelVerification/index.html?highlight=verifyModel#src.reconstruction.modelGeneration.modelVerification.verifyModel", "id": "306"}, {"name": "verifyModelBorg", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=verifyModelBorg#src.reconstruction.comparison.modelBorgifier.verifyModelBorg", "id": "307"}, {"name": "verifyRuleSyntax", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelVerification/index.html?highlight=verifyRuleSyntax#src.reconstruction.modelGeneration.modelVerification.verifyRuleSyntax", "id": "308"}, {"name": "webDatabases", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=webDatabases#src.reconstruction.rBioNet.webDatabases", "id": "309"}, {"name": "webKeggMapper", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=webKeggMapper#src.reconstruction.rBioNet.webKeggMapper", "id": "310"}, {"name": "writeReactionsFromPubSeedSpreadsheets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=writeReactionsFromPubSeedSpreadsheets#src.reconstruction.demeter.src.integration.writeReactionsFromPubSeedSpreadsheets", "id": "311"}] \ No newline at end of file +[{"name": "adaptDraftModelID", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=adaptDraftModelID#src.reconstruction.demeter.src.integration.adaptDraftModelID", "id": "1"}, {"name": "addCOBRAConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addCOBRAConstraints#src.reconstruction.refinement.addCOBRAConstraints", "id": "2"}, {"name": "addCOBRAVariables", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addCOBRAVariables#src.reconstruction.refinement.addCOBRAVariables", "id": "3"}, {"name": "addDemandReaction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addDemandReaction#src.reconstruction.refinement.addDemandReaction", "id": "4"}, {"name": "addExchangeRxn", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addExchangeRxn#src.reconstruction.refinement.addExchangeRxn", "id": "5"}, {"name": "addGenes", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addGenes#src.reconstruction.refinement.addGenes", "id": "6"}, {"name": "addMetabolite", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addMetabolite#src.reconstruction.refinement.addMetabolite", "id": "7"}, {"name": "addmetabolites", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=addmetabolites#src.reconstruction.rBioNet.addmetabolites", "id": "8"}, {"name": "addMetInfo", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=addMetInfo#src.reconstruction.comparison.modelBorgifier.addMetInfo", "id": "9"}, {"name": "addMIRIAMAnnotations", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addMIRIAMAnnotations#src.reconstruction.refinement.addMIRIAMAnnotations", "id": "10"}, {"name": "addmissing", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=addmissing#src.reconstruction.rBioNet.addmissing", "id": "11"}, {"name": "addMultipleMetabolites", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addMultipleMetabolites#src.reconstruction.refinement.addMultipleMetabolites", "id": "12"}, {"name": "addMultipleReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addMultipleReactions#src.reconstruction.refinement.addMultipleReactions", "id": "13"}, {"name": "addMultipleReactionsIT", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addMultipleReactionsIT#src.reconstruction.refinement.addMultipleReactionsIT", "id": "14"}, {"name": "addReaction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addReaction#src.reconstruction.refinement.addReaction", "id": "15"}, {"name": "addReactionGEM", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addReactionGEM#src.reconstruction.refinement.addReactionGEM", "id": "16"}, {"name": "addreactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=addreactions#src.reconstruction.rBioNet.addreactions", "id": "17"}, {"name": "addRefinementComments", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=addRefinementComments#src.reconstruction.demeter.src.refinement.addRefinementComments", "id": "18"}, {"name": "addSinkReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addSinkReactions#src.reconstruction.refinement.addSinkReactions", "id": "19"}, {"name": "addSubSystemsToReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=addSubSystemsToReactions#src.reconstruction.refinement.addSubSystemsToReactions", "id": "20"}, {"name": "addToTmodel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=addToTmodel#src.reconstruction.comparison.modelBorgifier.addToTmodel", "id": "21"}, {"name": "alphabetizeModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=alphabetizeModel#src.reconstruction.refinement.alphabetizeModel", "id": "22"}, {"name": "anaerobicGrowthGapfill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=anaerobicGrowthGapfill#src.reconstruction.demeter.src.refinement.anaerobicGrowthGapfill", "id": "23"}, {"name": "AndNode", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=AndNode#src.reconstruction.refinement.GPRLogic.AndNode", "id": "24"}, {"name": "annotateSBOTerms", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=annotateSBOTerms#src.reconstruction.refinement.annotateSBOTerms", "id": "25"}, {"name": "assignGPRA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=assignGPRA#src.reconstruction.refinement.assignGPRA", "id": "26"}, {"name": "assignRxnWeights", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/AuxillaryFiles/index.html?highlight=assignRxnWeights#src.reconstruction.fastGapFill.AuxillaryFiles.assignRxnWeights", "id": "27"}, {"name": "assignSubSystems", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=assignSubSystems#src.reconstruction.refinement.assignSubSystems", "id": "28"}, {"name": "autoMatchReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=autoMatchReactions#src.reconstruction.comparison.modelBorgifier.autoMatchReactions", "id": "29"}, {"name": "balancecheck", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=balancecheck#src.reconstruction.rBioNet.balancecheck", "id": "30"}, {"name": "BalancePrep", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=BalancePrep#src.reconstruction.rBioNet.BalancePrep", "id": "31"}, {"name": "batchTestAllReconstructionFunctions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=batchTestAllReconstructionFunctions#src.reconstruction.demeter.suite.tests.batchTestAllReconstructionFunctions", "id": "32"}, {"name": "buildRxn2subSystem", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=buildRxn2subSystem#src.reconstruction.refinement.buildRxn2subSystem", "id": "33"}, {"name": "buildRxnEquations", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=buildRxnEquations#src.reconstruction.comparison.modelBorgifier.buildRxnEquations", "id": "34"}, {"name": "buildRxnEquationsFromName", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=buildRxnEquationsFromName#src.reconstruction.comparison.modelBorgifier.buildRxnEquationsFromName", "id": "35"}, {"name": "buildTmodel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=buildTmodel#src.reconstruction.comparison.modelBorgifier.buildTmodel", "id": "36"}, {"name": "carbonSourceGapfill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=carbonSourceGapfill#src.reconstruction.demeter.src.refinement.carbonSourceGapfill", "id": "37"}, {"name": "changeCOBRAConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=changeCOBRAConstraints#src.reconstruction.refinement.changeCOBRAConstraints", "id": "38"}, {"name": "changeCOBRAVariable", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=changeCOBRAVariable#src.reconstruction.refinement.changeCOBRAVariable", "id": "39"}, {"name": "changeGeneAssociation", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=changeGeneAssociation#src.reconstruction.refinement.changeGeneAssociation", "id": "40"}, {"name": "changeRxnMets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=changeRxnMets#src.reconstruction.refinement.changeRxnMets", "id": "41"}, {"name": "charpos", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=charpos#src.reconstruction.comparison.modelBorgifier.charpos", "id": "42"}, {"name": "checkBalance", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=checkBalance#src.reconstruction.modelGeneration.massBalance.checkBalance", "id": "43"}, {"name": "checkCobraModelUnique", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=checkCobraModelUnique#src.reconstruction.modelGeneration.checkCobraModelUnique", "id": "44"}, {"name": "checkDatabaseIDs", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelVerification/index.html?highlight=checkDatabaseIDs#src.reconstruction.modelGeneration.modelVerification.checkDatabaseIDs", "id": "45"}, {"name": "checkDuplicateRxn", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=checkDuplicateRxn#src.reconstruction.modelGeneration.checkDuplicateRxn", "id": "46"}, {"name": "checkFluxConsistency", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/fluxConsistency/GREEDY/index.html?highlight=checkFluxConsistency#src.reconstruction.modelGeneration.fluxConsistency.GREEDY.checkFluxConsistency", "id": "47"}, {"name": "checkFormulaValidty", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=checkFormulaValidty#src.reconstruction.modelGeneration.massBalance.checkFormulaValidty", "id": "48"}, {"name": "checkIDsForTypeExist", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=checkIDsForTypeExist#src.reconstruction.refinement.checkIDsForTypeExist", "id": "49"}, {"name": "checkInputData", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=checkInputData#src.reconstruction.demeter.src.integration.checkInputData", "id": "50"}, {"name": "checkMassChargeBalance", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=checkMassChargeBalance#src.reconstruction.modelGeneration.massBalance.checkMassChargeBalance", "id": "51"}, {"name": "checkModelPreFBA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=checkModelPreFBA#src.reconstruction.modelGeneration.checkModelPreFBA", "id": "52"}, {"name": "checkModelProperties", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelProperties/index.html?highlight=checkModelProperties#src.reconstruction.modelGeneration.modelProperties.checkModelProperties", "id": "53"}, {"name": "checkObjective", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=checkObjective#src.reconstruction.modelGeneration.checkObjective", "id": "54"}, {"name": "checkPresentFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelVerification/index.html?highlight=checkPresentFields#src.reconstruction.modelGeneration.modelVerification.checkPresentFields", "id": "55"}, {"name": "checkStoichiometricConsistency", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=checkStoichiometricConsistency#src.reconstruction.modelGeneration.stoichConsistency.checkStoichiometricConsistency", "id": "56"}, {"name": "cleanTmodel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=cleanTmodel#src.reconstruction.comparison.modelBorgifier.cleanTmodel", "id": "57"}, {"name": "closeGUI", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=closeGUI#src.reconstruction.rBioNet.closeGUI", "id": "58"}, {"name": "colText", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=colText#src.reconstruction.comparison.modelBorgifier.colText", "id": "59"}, {"name": "combineChildren", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=combineChildren#src.reconstruction.refinement.GPRLogic.combineChildren", "id": "60"}, {"name": "compareAllMets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=compareAllMets#src.reconstruction.comparison.modelBorgifier.compareAllMets", "id": "61"}, {"name": "compareCbModels", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=compareCbModels#src.reconstruction.comparison.modelBorgifier.compareCbModels", "id": "62"}, {"name": "compareMatricies", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=compareMatricies#src.reconstruction.comparison.modelBorgifier.compareMatricies", "id": "63"}, {"name": "compareModels", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/index.html?highlight=compareModels#src.reconstruction.comparison.compareModels", "id": "64"}, {"name": "compareVersions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/reports/index.html?highlight=compareVersions#src.reconstruction.demeter.suite.reports.compareVersions", "id": "65"}, {"name": "compartment", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=compartment#src.reconstruction.rBioNet.compartment", "id": "66"}, {"name": "computeElementalMatrix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=computeElementalMatrix#src.reconstruction.modelGeneration.massBalance.computeElementalMatrix", "id": "67"}, {"name": "computeFluxConsistentReactionPresence", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=computeFluxConsistentReactionPresence#src.reconstruction.demeter.src.properties.computeFluxConsistentReactionPresence", "id": "68"}, {"name": "computeInternalMetaboliteProduction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=computeInternalMetaboliteProduction#src.reconstruction.demeter.src.properties.computeInternalMetaboliteProduction", "id": "69"}, {"name": "computeMetabolicDistance", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=computeMetabolicDistance#src.reconstruction.demeter.src.properties.computeMetabolicDistance", "id": "70"}, {"name": "computeMetFormulae", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=computeMetFormulae#src.reconstruction.modelGeneration.massBalance.computeMetFormulae", "id": "71"}, {"name": "computeModelProperties", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=computeModelProperties#src.reconstruction.demeter.src.properties.computeModelProperties", "id": "72"}, {"name": "computeReconstructionFeatures", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=computeReconstructionFeatures#src.reconstruction.demeter.src.properties.computeReconstructionFeatures", "id": "73"}, {"name": "computeUptakeSecretion", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=computeUptakeSecretion#src.reconstruction.demeter.src.properties.computeUptakeSecretion", "id": "74"}, {"name": "conditionSpecificGapFilling", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=conditionSpecificGapFilling#src.reconstruction.demeter.src.debugging.conditionSpecificGapFilling", "id": "75"}, {"name": "connectRxnGapfilling", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=connectRxnGapfilling#src.reconstruction.demeter.src.refinement.connectRxnGapfilling", "id": "76"}, {"name": "convertIrrevFluxDistribution", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=convertIrrevFluxDistribution#src.reconstruction.refinement.convertIrrevFluxDistribution", "id": "77"}, {"name": "convertToIrreversible", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=convertToIrreversible#src.reconstruction.refinement.convertToIrreversible", "id": "78"}, {"name": "convertToReversible", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=convertToReversible#src.reconstruction.refinement.convertToReversible", "id": "79"}, {"name": "countC", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=countC#src.reconstruction.comparison.modelBorgifier.countC", "id": "80"}, {"name": "CreateGPR", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=CreateGPR#src.reconstruction.rBioNet.CreateGPR", "id": "81"}, {"name": "createModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=createModel#src.reconstruction.refinement.createModel", "id": "82"}, {"name": "createPeriplasmaticSpace", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=createPeriplasmaticSpace#src.reconstruction.demeter.src.refinement.createPeriplasmaticSpace", "id": "83"}, {"name": "createRBioNetDBFromVMHDB", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=createRBioNetDBFromVMHDB#src.reconstruction.demeter.src.integration.createRBioNetDBFromVMHDB", "id": "84"}, {"name": "createSBMLFiles", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=createSBMLFiles#src.reconstruction.demeter.src.refinement.createSBMLFiles", "id": "85"}, {"name": "createUniversalReactionModel2", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/AuxillaryFiles/index.html?highlight=createUniversalReactionModel2#src.reconstruction.fastGapFill.AuxillaryFiles.createUniversalReactionModel2", "id": "86"}, {"name": "createXMatrix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=createXMatrix#src.reconstruction.refinement.createXMatrix", "id": "87"}, {"name": "createXMatrix2", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/AuxillaryFiles/index.html?highlight=createXMatrix2#src.reconstruction.fastGapFill.AuxillaryFiles.createXMatrix2", "id": "88"}, {"name": "curateAgainstBacDiveData", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=curateAgainstBacDiveData#src.reconstruction.demeter.src.refinement.curateAgainstBacDiveData", "id": "89"}, {"name": "curateGrowthRequirements", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=curateGrowthRequirements#src.reconstruction.demeter.src.refinement.curateGrowthRequirements", "id": "90"}, {"name": "data2model", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=data2model#src.reconstruction.rBioNet.data2model", "id": "91"}, {"name": "debugCouplingConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=debugCouplingConstraints#src.reconstruction.demeter.src.debugging.debugCouplingConstraints", "id": "92"}, {"name": "debugModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=debugModel#src.reconstruction.demeter.src.debugging.debugModel", "id": "93"}, {"name": "deleteSeedGapfilledReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=deleteSeedGapfilledReactions#src.reconstruction.demeter.src.refinement.deleteSeedGapfilledReactions", "id": "94"}, {"name": "detectDeadEnds", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=detectDeadEnds#src.reconstruction.modelGeneration.detectDeadEnds", "id": "95"}, {"name": "dispStoichAsTable", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=dispStoichAsTable#src.reconstruction.refinement.dispStoichAsTable", "id": "96"}, {"name": "doubleCheckGapfilledReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=doubleCheckGapfilledReactions#src.reconstruction.demeter.src.refinement.doubleCheckGapfilledReactions", "id": "97"}, {"name": "elementalMatrixToFormulae", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=elementalMatrixToFormulae#src.reconstruction.modelGeneration.massBalance.elementalMatrixToFormulae", "id": "98"}, {"name": "extendModelFieldsForType", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=extendModelFieldsForType#src.reconstruction.refinement.extendModelFieldsForType", "id": "99"}, {"name": "extractCompModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=extractCompModel#src.reconstruction.refinement.extractCompModel", "id": "100"}, {"name": "extractMetModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=extractMetModel#src.reconstruction.refinement.extractMetModel", "id": "101"}, {"name": "extractReconstructionResourceSubset", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=extractReconstructionResourceSubset#src.reconstruction.demeter.src.properties.extractReconstructionResourceSubset", "id": "102"}, {"name": "extractSubNetwork", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=extractSubNetwork#src.reconstruction.refinement.extractSubNetwork", "id": "103"}, {"name": "extractSubSysModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=extractSubSysModel#src.reconstruction.refinement.extractSubSysModel", "id": "104"}, {"name": "fastcc_nonconvex", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/fluxConsistency/DCA/index.html?highlight=fastcc_nonconvex#src.reconstruction.modelGeneration.fluxConsistency.DCA.fastcc_nonconvex", "id": "105"}, {"name": "fastGapFill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=fastGapFill#src.reconstruction.fastGapFill.fastGapFill", "id": "106"}, {"name": "fastLeakTest", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=fastLeakTest#src.reconstruction.modelGeneration.fastLeakTest", "id": "107"}, {"name": "fermentationPathwayGapfill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=fermentationPathwayGapfill#src.reconstruction.demeter.src.refinement.fermentationPathwayGapfill", "id": "108"}, {"name": "findFluxConsistentSubset", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/fluxConsistency/index.html?highlight=findFluxConsistentSubset#src.reconstruction.modelGeneration.fluxConsistency.findFluxConsistentSubset", "id": "109"}, {"name": "findFutileCycle", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=findFutileCycle#src.reconstruction.demeter.src.debugging.findFutileCycle", "id": "110"}, {"name": "findIntracellularRxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/AuxillaryFiles/index.html?highlight=findIntracellularRxns#src.reconstruction.fastGapFill.AuxillaryFiles.findIntracellularRxns", "id": "111"}, {"name": "findMassLeaksAndSiphons", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=findMassLeaksAndSiphons#src.reconstruction.modelGeneration.stoichConsistency.findMassLeaksAndSiphons", "id": "112"}, {"name": "findMetMatch", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=findMetMatch#src.reconstruction.comparison.modelBorgifier.findMetMatch", "id": "113"}, {"name": "findMinimalLeakageMode", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=findMinimalLeakageMode#src.reconstruction.modelGeneration.stoichConsistency.findMinimalLeakageMode", "id": "114"}, {"name": "findMinimalLeakageModeMet", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=findMinimalLeakageModeMet#src.reconstruction.modelGeneration.stoichConsistency.findMinimalLeakageModeMet", "id": "115"}, {"name": "findMinimalLeakageModeRxn", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=findMinimalLeakageModeRxn#src.reconstruction.modelGeneration.stoichConsistency.findMinimalLeakageModeRxn", "id": "116"}, {"name": "findRxnMatch", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=findRxnMatch#src.reconstruction.comparison.modelBorgifier.findRxnMatch", "id": "117"}, {"name": "findSExRxnInd", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=findSExRxnInd#src.reconstruction.modelGeneration.massBalance.findSExRxnInd", "id": "118"}, {"name": "findStoichConsistentSubset", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=findStoichConsistentSubset#src.reconstruction.modelGeneration.stoichConsistency.findStoichConsistentSubset", "id": "119"}, {"name": "findTransportersWithoutExchanges", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=findTransportersWithoutExchanges#src.reconstruction.demeter.src.refinement.findTransportersWithoutExchanges", "id": "120"}, {"name": "findUnusedExchangeReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=findUnusedExchangeReactions#src.reconstruction.demeter.src.refinement.findUnusedExchangeReactions", "id": "121"}, {"name": "fixChemFormulas", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=fixChemFormulas#src.reconstruction.comparison.modelBorgifier.fixChemFormulas", "id": "122"}, {"name": "fixNames", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=fixNames#src.reconstruction.comparison.modelBorgifier.fixNames", "id": "123"}, {"name": "flipRxnOrientation", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=flipRxnOrientation#src.reconstruction.refinement.flipRxnOrientation", "id": "124"}, {"name": "formula2mets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=formula2mets#src.reconstruction.rBioNet.formula2mets", "id": "125"}, {"name": "FormulaParser", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=FormulaParser#src.reconstruction.refinement.GPRLogic.FormulaParser", "id": "126"}, {"name": "gapfillRefinedGenomeReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=gapfillRefinedGenomeReactions#src.reconstruction.demeter.src.integration.gapfillRefinedGenomeReactions", "id": "127"}, {"name": "gapFind", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/index.html?highlight=gapFind#src.reconstruction..gapFind", "id": "128"}, {"name": "generateMetaboReport", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/metaboRePort/index.html?highlight=generateMetaboReport#src.reconstruction.metaboRePort.generateMetaboReport", "id": "129"}, {"name": "generateMetaboScore", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/metaboRePort/index.html?highlight=generateMetaboScore#src.reconstruction.metaboRePort.generateMetaboScore", "id": "130"}, {"name": "generateRules", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=generateRules#src.reconstruction.refinement.generateRules", "id": "131"}, {"name": "generateSUXComp", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/AuxillaryFiles/index.html?highlight=generateSUXComp#src.reconstruction.fastGapFill.AuxillaryFiles.generateSUXComp", "id": "132"}, {"name": "generateSUXMatrix", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=generateSUXMatrix#src.reconstruction.fastGapFill.generateSUXMatrix", "id": "133"}, {"name": "GenesAndReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=GenesAndReactions#src.reconstruction.rBioNet.GenesAndReactions", "id": "134"}, {"name": "GenesReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=GenesReactions#src.reconstruction.rBioNet.GenesReactions", "id": "135"}, {"name": "getCurationStatus", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=getCurationStatus#src.reconstruction.demeter.src.integration.getCurationStatus", "id": "136"}, {"name": "getElementalComposition", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=getElementalComposition#src.reconstruction.modelGeneration.massBalance.getElementalComposition", "id": "137"}, {"name": "getEmptyConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=getEmptyConstraints#src.reconstruction.refinement.getEmptyConstraints", "id": "138"}, {"name": "getgenelist", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=getgenelist#src.reconstruction.rBioNet.getgenelist", "id": "139"}, {"name": "getIDPositions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=getIDPositions#src.reconstruction.refinement.getIDPositions", "id": "140"}, {"name": "getMetAbbr", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=getMetAbbr#src.reconstruction.refinement.getMetAbbr", "id": "141"}, {"name": "getModelFieldsForType", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=getModelFieldsForType#src.reconstruction.refinement.getModelFieldsForType", "id": "142"}, {"name": "getReactionMetabolitePresence", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=getReactionMetabolitePresence#src.reconstruction.demeter.src.properties.getReactionMetabolitePresence", "id": "143"}, {"name": "getSubsystemPresence", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=getSubsystemPresence#src.reconstruction.demeter.src.properties.getSubsystemPresence", "id": "144"}, {"name": "getUnannotatedReactionsFromPubSeedSpreadsheets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=getUnannotatedReactionsFromPubSeedSpreadsheets#src.reconstruction.demeter.src.integration.getUnannotatedReactionsFromPubSeedSpreadsheets", "id": "145"}, {"name": "GPR2Genes", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=GPR2Genes#src.reconstruction.rBioNet.GPR2Genes", "id": "146"}, {"name": "growthExpMatch", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/growthExpMatch/index.html?highlight=growthExpMatch#src.reconstruction.growthExpMatch.growthExpMatch", "id": "147"}, {"name": "identifyBlockedRxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=identifyBlockedRxns#src.reconstruction.fastGapFill.identifyBlockedRxns", "id": "148"}, {"name": "identifyFutileCycles", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=identifyFutileCycles#src.reconstruction.demeter.src.debugging.identifyFutileCycles", "id": "149"}, {"name": "ismatlab", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=ismatlab#src.reconstruction.comparison.modelBorgifier.ismatlab", "id": "150"}, {"name": "ispolymer", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=ispolymer#src.reconstruction.modelGeneration.massBalance.ispolymer", "id": "151"}, {"name": "isSameCobraModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=isSameCobraModel#src.reconstruction.refinement.isSameCobraModel", "id": "152"}, {"name": "Keep_reactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=Keep_reactions#src.reconstruction.rBioNet.Keep_reactions", "id": "153"}, {"name": "keepCompartment", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=keepCompartment#src.reconstruction.refinement.keepCompartment", "id": "154"}, {"name": "leakTest", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=leakTest#src.reconstruction.modelGeneration.stoichConsistency.leakTest", "id": "155"}, {"name": "LegalRxnFormula", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=LegalRxnFormula#src.reconstruction.rBioNet.LegalRxnFormula", "id": "156"}, {"name": "LiteralNode", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=LiteralNode#src.reconstruction.refinement.GPRLogic.LiteralNode", "id": "157"}, {"name": "load_reaction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=load_reaction#src.reconstruction.rBioNet.load_reaction", "id": "158"}, {"name": "LoadReaction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=LoadReaction#src.reconstruction.rBioNet.LoadReaction", "id": "159"}, {"name": "loadVMHDatabase", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=loadVMHDatabase#src.reconstruction.demeter.src.integration.loadVMHDatabase", "id": "160"}, {"name": "LP9weighted", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/AuxillaryFiles/index.html?highlight=LP9weighted#src.reconstruction.fastGapFill.AuxillaryFiles.LP9weighted", "id": "161"}, {"name": "makeModelPropertiesTable", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelProperties/index.html?highlight=makeModelPropertiesTable#src.reconstruction.modelGeneration.modelProperties.makeModelPropertiesTable", "id": "162"}, {"name": "makeNamesUnique", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=makeNamesUnique#src.reconstruction.comparison.modelBorgifier.makeNamesUnique", "id": "163"}, {"name": "mapKBaseToVMHReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=mapKBaseToVMHReactions#src.reconstruction.demeter.src.integration.mapKBaseToVMHReactions", "id": "164"}, {"name": "mapMatch", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=mapMatch#src.reconstruction.comparison.modelBorgifier.mapMatch", "id": "165"}, {"name": "mapMediumData2AGORA", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=mapMediumData2AGORA#src.reconstruction.demeter.src.integration.mapMediumData2AGORA", "id": "166"}, {"name": "maxCardinalityConservationVector", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=maxCardinalityConservationVector#src.reconstruction.modelGeneration.stoichConsistency.maxCardinalityConservationVector", "id": "167"}, {"name": "maxEntConsVector", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=maxEntConsVector#src.reconstruction.modelGeneration.stoichConsistency.maxEntConsVector", "id": "168"}, {"name": "mergeModelFieldPositions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=mergeModelFieldPositions#src.reconstruction.refinement.mergeModelFieldPositions", "id": "169"}, {"name": "mergeModelsBorg", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=mergeModelsBorg#src.reconstruction.comparison.modelBorgifier.mergeModelsBorg", "id": "170"}, {"name": "mergeTrxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=mergeTrxns#src.reconstruction.comparison.modelBorgifier.mergeTrxns", "id": "171"}, {"name": "mergeTwoModels", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=mergeTwoModels#src.reconstruction.refinement.mergeTwoModels", "id": "172"}, {"name": "met_charge_formula", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=met_charge_formula#src.reconstruction.rBioNet.met_charge_formula", "id": "173"}, {"name": "metabolites_in_database", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=metabolites_in_database#src.reconstruction.rBioNet.metabolites_in_database", "id": "174"}, {"name": "metCompare", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=metCompare#src.reconstruction.comparison.modelBorgifier.metCompare", "id": "175"}, {"name": "metCompareGUI", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=metCompareGUI#src.reconstruction.comparison.modelBorgifier.metCompareGUI", "id": "176"}, {"name": "mets2str", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=mets2str#src.reconstruction.rBioNet.mets2str", "id": "177"}, {"name": "minCardinalityConservationRelaxationVector", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=minCardinalityConservationRelaxationVector#src.reconstruction.modelGeneration.stoichConsistency.minCardinalityConservationRelaxationVector", "id": "178"}, {"name": "model2data", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=model2data#src.reconstruction.rBioNet.model2data", "id": "179"}, {"name": "model2text", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=model2text#src.reconstruction.rBioNet.model2text", "id": "180"}, {"name": "model_description", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=model_description#src.reconstruction.rBioNet.model_description", "id": "181"}, {"name": "model_stats", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=model_stats#src.reconstruction.rBioNet.model_stats", "id": "182"}, {"name": "moveRxn", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=moveRxn#src.reconstruction.refinement.moveRxn", "id": "183"}, {"name": "neighborRxn2data", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=neighborRxn2data#src.reconstruction.rBioNet.neighborRxn2data", "id": "184"}, {"name": "newCompsNewMets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=newCompsNewMets#src.reconstruction.comparison.modelBorgifier.newCompsNewMets", "id": "185"}, {"name": "Node", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=Node#src.reconstruction.refinement.GPRLogic.Node", "id": "186"}, {"name": "NormaliseGPRs", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=NormaliseGPRs#src.reconstruction.refinement.GPRLogic.NormaliseGPRs", "id": "187"}, {"name": "numAtomsOfElementInFormula", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=numAtomsOfElementInFormula#src.reconstruction.modelGeneration.massBalance.numAtomsOfElementInFormula", "id": "188"}, {"name": "optimalConservationVectors", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=optimalConservationVectors#src.reconstruction.modelGeneration.stoichConsistency.optimalConservationVectors", "id": "189"}, {"name": "optimalScores", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=optimalScores#src.reconstruction.comparison.modelBorgifier.optimalScores", "id": "190"}, {"name": "optWeightExp", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=optWeightExp#src.reconstruction.comparison.modelBorgifier.optWeightExp", "id": "191"}, {"name": "optWeightLin", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=optWeightLin#src.reconstruction.comparison.modelBorgifier.optWeightLin", "id": "192"}, {"name": "orderModelFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=orderModelFields#src.reconstruction.refinement.orderModelFields", "id": "193"}, {"name": "orderModelFieldsBorg", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=orderModelFieldsBorg#src.reconstruction.comparison.modelBorgifier.orderModelFieldsBorg", "id": "194"}, {"name": "organizeModelCool", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=organizeModelCool#src.reconstruction.comparison.modelBorgifier.organizeModelCool", "id": "195"}, {"name": "OrNode", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/GPRLogic/index.html?highlight=OrNode#src.reconstruction.refinement.GPRLogic.OrNode", "id": "196"}, {"name": "parseNCBItaxonomy", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=parseNCBItaxonomy#src.reconstruction.demeter.src.integration.parseNCBItaxonomy", "id": "197"}, {"name": "performDataDrivenRefinement", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=performDataDrivenRefinement#src.reconstruction.demeter.src.refinement.performDataDrivenRefinement", "id": "198"}, {"name": "pHbalanceProtons", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=pHbalanceProtons#src.reconstruction.modelGeneration.massBalance.pHbalanceProtons", "id": "199"}, {"name": "plotATPTestResults", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=plotATPTestResults#src.reconstruction.demeter.suite.tests.plotATPTestResults", "id": "200"}, {"name": "plotBiomassTestResults", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=plotBiomassTestResults#src.reconstruction.demeter.suite.tests.plotBiomassTestResults", "id": "201"}, {"name": "plotMetaboliteProducersConsumers", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=plotMetaboliteProducersConsumers#src.reconstruction.demeter.src.properties.plotMetaboliteProducersConsumers", "id": "202"}, {"name": "plotModelConsistency", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelProperties/index.html?highlight=plotModelConsistency#src.reconstruction.modelGeneration.modelProperties.plotModelConsistency", "id": "203"}, {"name": "plotTestSuiteResults", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=plotTestSuiteResults#src.reconstruction.demeter.suite.tests.plotTestSuiteResults", "id": "204"}, {"name": "populateModelwithRxnIDs", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/metaboRePort/index.html?highlight=populateModelwithRxnIDs#src.reconstruction.metaboRePort.populateModelwithRxnIDs", "id": "205"}, {"name": "populateModelwithRxnIDs", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/metaboRePort/other/index.html?highlight=populateModelwithRxnIDs#src.reconstruction.metaboRePort.other.populateModelwithRxnIDs", "id": "206"}, {"name": "postProcessGapFillSolutions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=postProcessGapFillSolutions#src.reconstruction.fastGapFill.postProcessGapFillSolutions", "id": "207"}, {"name": "predictGrowthRequirements", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=predictGrowthRequirements#src.reconstruction.demeter.src.properties.predictGrowthRequirements", "id": "208"}, {"name": "prepareFastGapFill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=prepareFastGapFill#src.reconstruction.fastGapFill.prepareFastGapFill", "id": "209"}, {"name": "prepareInputData", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=prepareInputData#src.reconstruction.demeter.src.integration.prepareInputData", "id": "210"}, {"name": "printBiomass", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelProperties/index.html?highlight=printBiomass#src.reconstruction.modelGeneration.modelProperties.printBiomass", "id": "211"}, {"name": "printMinimalLeakageMode", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/stoichConsistency/index.html?highlight=printMinimalLeakageMode#src.reconstruction.modelGeneration.stoichConsistency.printMinimalLeakageMode", "id": "212"}, {"name": "printObjective", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=printObjective#src.reconstruction.modelGeneration.printObjective", "id": "213"}, {"name": "printReconstructionContent", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=printReconstructionContent#src.reconstruction.demeter.src.properties.printReconstructionContent", "id": "214"}, {"name": "printRefinedModelIDs", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=printRefinedModelIDs#src.reconstruction.demeter.src.integration.printRefinedModelIDs", "id": "215"}, {"name": "printRefinementReport", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/reports/index.html?highlight=printRefinementReport#src.reconstruction.demeter.suite.reports.printRefinementReport", "id": "216"}, {"name": "printSolutionGEM", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/growthExpMatch/index.html?highlight=printSolutionGEM#src.reconstruction.growthExpMatch.printSolutionGEM", "id": "217"}, {"name": "producetSNEPlots", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=producetSNEPlots#src.reconstruction.demeter.src.properties.producetSNEPlots", "id": "218"}, {"name": "propagateKBaseMetTranslationToRxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=propagateKBaseMetTranslationToRxns#src.reconstruction.demeter.src.integration.propagateKBaseMetTranslationToRxns", "id": "219"}, {"name": "putrefactionPathwaysGapfilling", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=putrefactionPathwaysGapfilling#src.reconstruction.demeter.src.refinement.putrefactionPathwaysGapfilling", "id": "220"}, {"name": "rankFeaturesByIncidence", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=rankFeaturesByIncidence#src.reconstruction.demeter.src.properties.rankFeaturesByIncidence", "id": "221"}, {"name": "rBioNet_search", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=rBioNet_search#src.reconstruction.rBioNet.rBioNet_search", "id": "222"}, {"name": "rBioNetAbout", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=rBioNetAbout#src.reconstruction.rBioNet.rBioNetAbout", "id": "223"}, {"name": "rBioNetSaveLoad", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=rBioNetSaveLoad#src.reconstruction.rBioNet.rBioNetSaveLoad", "id": "224"}, {"name": "rBioNetSettings", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=rBioNetSettings#src.reconstruction.rBioNet.rBioNetSettings", "id": "225"}, {"name": "ReactionChecks", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=ReactionChecks#src.reconstruction.rBioNet.ReactionChecks", "id": "226"}, {"name": "reactionCompare", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=reactionCompare#src.reconstruction.comparison.modelBorgifier.reactionCompare", "id": "227"}, {"name": "reactionCompareGUI", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=reactionCompareGUI#src.reconstruction.comparison.modelBorgifier.reactionCompareGUI", "id": "228"}, {"name": "ReactionEq", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=ReactionEq#src.reconstruction.rBioNet.ReactionEq", "id": "229"}, {"name": "readCbTmodel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=readCbTmodel#src.reconstruction.comparison.modelBorgifier.readCbTmodel", "id": "230"}, {"name": "readInputTableForPipeline", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=readInputTableForPipeline#src.reconstruction.demeter.src.integration.readInputTableForPipeline", "id": "231"}, {"name": "reassignFwBwMatch", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=reassignFwBwMatch#src.reconstruction.refinement.reassignFwBwMatch", "id": "232"}, {"name": "rebuildBiomassReaction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=rebuildBiomassReaction#src.reconstruction.demeter.src.refinement.rebuildBiomassReaction", "id": "233"}, {"name": "rebuildModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=rebuildModel#src.reconstruction.demeter.src.refinement.rebuildModel", "id": "234"}, {"name": "ReconstructionCreator", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=ReconstructionCreator#src.reconstruction.rBioNet.ReconstructionCreator", "id": "235"}, {"name": "ReconstructionTool", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=ReconstructionTool#src.reconstruction.rBioNet.ReconstructionTool", "id": "236"}, {"name": "reduceModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=reduceModel#src.reconstruction.refinement.reduceModel", "id": "237"}, {"name": "refineGenomeAnnotation", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=refineGenomeAnnotation#src.reconstruction.demeter.src.refinement.refineGenomeAnnotation", "id": "238"}, {"name": "refinementPipeline", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=refinementPipeline#src.reconstruction.demeter.src.refinement.refinementPipeline", "id": "239"}, {"name": "regulariseModelFormulae", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/massBalance/index.html?highlight=regulariseModelFormulae#src.reconstruction.modelGeneration.massBalance.regulariseModelFormulae", "id": "240"}, {"name": "removeCOBRAConstraints", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeCOBRAConstraints#src.reconstruction.refinement.removeCOBRAConstraints", "id": "241"}, {"name": "removeCompartments", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=removeCompartments#src.reconstruction.modelGeneration.removeCompartments", "id": "242"}, {"name": "removeDeadEnds", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=removeDeadEnds#src.reconstruction.modelGeneration.removeDeadEnds", "id": "243"}, {"name": "removeDuplicateNames", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=removeDuplicateNames#src.reconstruction.comparison.modelBorgifier.removeDuplicateNames", "id": "244"}, {"name": "removeFieldEntriesForType", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeFieldEntriesForType#src.reconstruction.refinement.removeFieldEntriesForType", "id": "245"}, {"name": "removeFutileCycles", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=removeFutileCycles#src.reconstruction.demeter.src.debugging.removeFutileCycles", "id": "246"}, {"name": "removeGenesFromModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeGenesFromModel#src.reconstruction.refinement.removeGenesFromModel", "id": "247"}, {"name": "removeMetabolites", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeMetabolites#src.reconstruction.refinement.removeMetabolites", "id": "248"}, {"name": "removeProblematicCharacters", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=removeProblematicCharacters#src.reconstruction.comparison.modelBorgifier.removeProblematicCharacters", "id": "249"}, {"name": "removeRxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeRxns#src.reconstruction.refinement.removeRxns", "id": "250"}, {"name": "removeSubSystemsFromRxns", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeSubSystemsFromRxns#src.reconstruction.refinement.removeSubSystemsFromRxns", "id": "251"}, {"name": "removeTrivialStoichiometry", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeTrivialStoichiometry#src.reconstruction.refinement.removeTrivialStoichiometry", "id": "252"}, {"name": "removeUnannotatedReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=removeUnannotatedReactions#src.reconstruction.demeter.src.refinement.removeUnannotatedReactions", "id": "253"}, {"name": "removeUnusedGenes", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=removeUnusedGenes#src.reconstruction.refinement.removeUnusedGenes", "id": "254"}, {"name": "reportPDF", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/reports/index.html?highlight=reportPDF#src.reconstruction.demeter.suite.reports.reportPDF", "id": "255"}, {"name": "rowvector", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=rowvector#src.reconstruction.comparison.modelBorgifier.rowvector", "id": "256"}, {"name": "runDebuggingTools", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=runDebuggingTools#src.reconstruction.demeter.src.debugging.runDebuggingTools", "id": "257"}, {"name": "runDemeter", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=runDemeter#src.reconstruction.demeter.src.refinement.runDemeter", "id": "258"}, {"name": "runGapfillingFunctions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=runGapfillingFunctions#src.reconstruction.demeter.src.debugging.runGapfillingFunctions", "id": "259"}, {"name": "runTestsOnModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=runTestsOnModel#src.reconstruction.demeter.suite.tests.runTestsOnModel", "id": "260"}, {"name": "runTestSuiteTools", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=runTestSuiteTools#src.reconstruction.demeter.suite.tests.runTestSuiteTools", "id": "261"}, {"name": "secretionProductGapfill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=secretionProductGapfill#src.reconstruction.demeter.src.refinement.secretionProductGapfill", "id": "262"}, {"name": "setConstraintsIrrevModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=setConstraintsIrrevModel#src.reconstruction.modelGeneration.setConstraintsIrrevModel", "id": "263"}, {"name": "setRxnSubSystems", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=setRxnSubSystems#src.reconstruction.refinement.setRxnSubSystems", "id": "264"}, {"name": "sim_general", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=sim_general#src.reconstruction.rBioNet.sim_general", "id": "265"}, {"name": "similarities", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=similarities#src.reconstruction.rBioNet.similarities", "id": "266"}, {"name": "similarity", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=similarity#src.reconstruction.rBioNet.similarity", "id": "267"}, {"name": "submitGapFill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=submitGapFill#src.reconstruction.fastGapFill.submitGapFill", "id": "268"}, {"name": "summarizeFeaturesOnTaxonLevels", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/properties/index.html?highlight=summarizeFeaturesOnTaxonLevels#src.reconstruction.demeter.src.properties.summarizeFeaturesOnTaxonLevels", "id": "269"}, {"name": "swiftGapFill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/fastGapFill/index.html?highlight=swiftGapFill#src.reconstruction.fastGapFill.swiftGapFill", "id": "270"}, {"name": "targetedGapFilling", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=targetedGapFilling#src.reconstruction.demeter.src.debugging.targetedGapFilling", "id": "271"}, {"name": "test4HumanFctExt", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=test4HumanFctExt#src.reconstruction.modelGeneration.test4HumanFctExt", "id": "272"}, {"name": "testAromaticAADegradation", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testAromaticAADegradation#src.reconstruction.demeter.suite.tests.testAromaticAADegradation", "id": "273"}, {"name": "testATP", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testATP#src.reconstruction.demeter.suite.tests.testATP", "id": "274"}, {"name": "testATPYieldFromCsources", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/index.html?highlight=testATPYieldFromCsources#src.reconstruction.modelGeneration.testATPYieldFromCsources", "id": "275"}, {"name": "testBileAcidBiosynthesis", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testBileAcidBiosynthesis#src.reconstruction.demeter.suite.tests.testBileAcidBiosynthesis", "id": "276"}, {"name": "testCarbonSources", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testCarbonSources#src.reconstruction.demeter.suite.tests.testCarbonSources", "id": "277"}, {"name": "testDrugMetabolism", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testDrugMetabolism#src.reconstruction.demeter.suite.tests.testDrugMetabolism", "id": "278"}, {"name": "testFermentationProducts", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testFermentationProducts#src.reconstruction.demeter.suite.tests.testFermentationProducts", "id": "279"}, {"name": "testFluxConsistency", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/fluxConsistency/GREEDY/index.html?highlight=testFluxConsistency#src.reconstruction.modelGeneration.fluxConsistency.GREEDY.testFluxConsistency", "id": "280"}, {"name": "testGeneRules", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testGeneRules#src.reconstruction.demeter.suite.tests.testGeneRules", "id": "281"}, {"name": "testGrowth", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testGrowth#src.reconstruction.demeter.suite.tests.testGrowth", "id": "282"}, {"name": "testGrowthOnDefinedMedia", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testGrowthOnDefinedMedia#src.reconstruction.demeter.suite.tests.testGrowthOnDefinedMedia", "id": "283"}, {"name": "testInputFiles", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testInputFiles#src.reconstruction.demeter.suite.tests.testInputFiles", "id": "284"}, {"name": "testLeakingMetabolites", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testLeakingMetabolites#src.reconstruction.demeter.suite.tests.testLeakingMetabolites", "id": "285"}, {"name": "testMetaboliteUptake", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testMetaboliteUptake#src.reconstruction.demeter.suite.tests.testMetaboliteUptake", "id": "286"}, {"name": "testModelMassChargeBalance", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testModelMassChargeBalance#src.reconstruction.demeter.suite.tests.testModelMassChargeBalance", "id": "287"}, {"name": "testPathway", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/index.html?highlight=testPathway#src.reconstruction..testPathway", "id": "288"}, {"name": "testPutrefactionPathways", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testPutrefactionPathways#src.reconstruction.demeter.suite.tests.testPutrefactionPathways", "id": "289"}, {"name": "testRefinedReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testRefinedReactions#src.reconstruction.demeter.suite.tests.testRefinedReactions", "id": "290"}, {"name": "testSecretionProducts", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=testSecretionProducts#src.reconstruction.demeter.suite.tests.testSecretionProducts", "id": "291"}, {"name": "TmodelFields", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=TmodelFields#src.reconstruction.comparison.modelBorgifier.TmodelFields", "id": "292"}, {"name": "TmodelStats", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=TmodelStats#src.reconstruction.comparison.modelBorgifier.TmodelStats", "id": "293"}, {"name": "translateDraftReconstruction", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=translateDraftReconstruction#src.reconstruction.demeter.src.refinement.translateDraftReconstruction", "id": "294"}, {"name": "translateKBaseModel2VMHModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=translateKBaseModel2VMHModel#src.reconstruction.demeter.src.refinement.translateKBaseModel2VMHModel", "id": "295"}, {"name": "translateKBaseToVMHMets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=translateKBaseToVMHMets#src.reconstruction.demeter.src.integration.translateKBaseToVMHMets", "id": "296"}, {"name": "tutorial_MetaboRePort", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/metaboRePort/index.html?highlight=tutorial_MetaboRePort#src.reconstruction.metaboRePort.tutorial_MetaboRePort", "id": "297"}, {"name": "tutorial_MetaboRePort_m", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/metaboRePort/index.html?highlight=tutorial_MetaboRePort_m#src.reconstruction.metaboRePort.tutorial_MetaboRePort_m", "id": "298"}, {"name": "unbalanced", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=unbalanced#src.reconstruction.rBioNet.unbalanced", "id": "299"}, {"name": "untargetedGapFilling", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=untargetedGapFilling#src.reconstruction.demeter.src.debugging.untargetedGapFilling", "id": "300"}, {"name": "updateFieldOrderForType", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=updateFieldOrderForType#src.reconstruction.refinement.updateFieldOrderForType", "id": "301"}, {"name": "updateGenes", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=updateGenes#src.reconstruction.refinement.updateGenes", "id": "302"}, {"name": "updateMetNames", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/refinement/index.html?highlight=updateMetNames#src.reconstruction.refinement.updateMetNames", "id": "303"}, {"name": "uptakeMetaboliteGapfill", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/refinement/index.html?highlight=uptakeMetaboliteGapfill#src.reconstruction.demeter.src.refinement.uptakeMetaboliteGapfill", "id": "304"}, {"name": "validateCompartments", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/suite/tests/index.html?highlight=validateCompartments#src.reconstruction.demeter.suite.tests.validateCompartments", "id": "305"}, {"name": "verifyGapfilledReactions", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/debugging/index.html?highlight=verifyGapfilledReactions#src.reconstruction.demeter.src.debugging.verifyGapfilledReactions", "id": "306"}, {"name": "verifyModel", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelVerification/index.html?highlight=verifyModel#src.reconstruction.modelGeneration.modelVerification.verifyModel", "id": "307"}, {"name": "verifyModelBorg", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/comparison/modelBorgifier/index.html?highlight=verifyModelBorg#src.reconstruction.comparison.modelBorgifier.verifyModelBorg", "id": "308"}, {"name": "verifyRuleSyntax", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/modelGeneration/modelVerification/index.html?highlight=verifyRuleSyntax#src.reconstruction.modelGeneration.modelVerification.verifyRuleSyntax", "id": "309"}, {"name": "webDatabases", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=webDatabases#src.reconstruction.rBioNet.webDatabases", "id": "310"}, {"name": "webKeggMapper", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/rBioNet/index.html?highlight=webKeggMapper#src.reconstruction.rBioNet.webKeggMapper", "id": "311"}, {"name": "writeReactionsFromPubSeedSpreadsheets", "parent_id": "-1", "url": "https://opencobra.github.io/cobratoolbox/stable/modules/reconstruction/demeter/src/integration/index.html?highlight=writeReactionsFromPubSeedSpreadsheets#src.reconstruction.demeter.src.integration.writeReactionsFromPubSeedSpreadsheets", "id": "312"}] \ No newline at end of file