7 | KO mutants (MOMA, ROOM) Flashcards
(59 cards)
Is FBA suitable for simulating knock-out mutants? Why/ why not?
No. Knock outs can be easily implemented, however:
- FBA assumes cells optimize biomass, but mutants may not do so.
- Lab-generated mutants aren’t under long-term evolutionary pressure.
- Knock-out mutants lack evolved regulatory mechanisms to redirect flux optimally.
How is a gene knock-out simulated in FBA?
- The flux of the associated reaction is set to zero (vr = 0).
- FBA is solved again with this constraint.
What are isoenzymes and enzyme complexes, and how can they be modelled in FBA?
Isoenzymes: different but catalyzing same reaction — all must be knocked out.
Enzyme complexes: multiple subunits — removal of any subunit inactivates complex
Modelled with the help of gene-protein-reaction (GPR) associations represented in boolean format
How are GPR associations handled in knock-out simulations?
- GPRs are represented using Boolean logic.
- A reaction is knocked out if its GPR evaluates to FALSE.
How are the feasibility spaces of mutants and wild type related?
- Feasibility space of mutant properly contained in feasibility space of WT!
- assuming all lower and upper boundaries on flux capacities are the same
What are relevant formulae for eigenvalues / vectors? Example with 𝑄 = [ 2 1, 1 2 ] ?
𝑄𝑥 = 𝜆𝑥 has a non-zero solution for 𝑥 if and only if:
det(𝑄−𝜆𝐼) = 0
Example:
𝑄 = [ 2 1, 1 2 ]
det(𝑄−𝜆𝐼) = [2−𝜆 1, 1 2−𝜆 ] = 3 − 4𝜆 + 𝜆<sup2</sup>
→ 𝜆1 = 1, 𝜆2 = 3
Solve for 𝑥 by substitution in (𝑄−𝜆𝐼)𝑥 = 0 !
MOMA relaxes the assumption of ______ ______ ______ ______for gene ______. A mutant is likely to initially display a ______ ______distribution.
MOMA relaxes the assumption of optimal growth flux states for gene deletions. A mutant is likely to initially display a suboptimal flux distribution.
What does MOMA stand for? What is the hypothesis behind MOMA?
Minimization Of Metabolic Adjustment
Hypothesis:
- After a gene deletion, the cell adopts a flux distribution close to the wild type.
- It does not immediately re-optimize for growth.
The hypothesis behind MOMA is to ______ ______. The maths behind it differs from the ______ used in FBA. It involves ______ minimization in ______ ______.
The hypothesis behind MOMA is to be tested. The maths behind it differs from the LP used in FBA. It involves distance minimization in flux space.
How does MOMA formulate the problem?
- MOMA finds the flux vector w (mutant) that is closest to the wild-type vector v, under constraints that represent the mutant network.
- i.e minimizes Euclidean distance between WT flux vector v and mutant flux vector w.
- results in a quadratic programming (QP) problem.
in MOMA, when considering the WT flux vector v and the mutant flux vector w, what can be said about the euclidean distance sqrt [ Σ (wi - vi)2]? I.e the next step in being able to solve this
Clearly its minimized when Σ (wi - vi)2 is minimized
In MOMA, why can the term v2 be ignored in the objective function?
- Because v is constant (wild-type flux is known).
- w is the variable, so only terms involving w affect the optimization.
- Constants don’t change the position of the minimum.
What is the starting MOMA objective function based on the hypothesis?
- min ∑i(wi − vi)2
- This expands to: ∑iwi2 - 2∑iviwi + ∑ivi2
- the last term is constant and can be removed
✅
What is the final MOMA optimization problem?
minw wTIm w + (−2vT)w
s.t:
N w = 0
wj = 0 (for knocked-out reaction)
∀i, 1 ≤ i ≠ j ≤ m, wimin ≤ wi ≤ wimax
✅
What type of optimization problem is MOMA?
A quadratic program (QP) with linear constraints.
What is a Quadratic Programming (QP) problem?
- Optimization with quadratic objective: eg minx ½xTQx + cTx
- And linear constraints.
✅
In MOMA, how can Σ wi2 be written using matrix notation?
- Σ wi² = wTImw, where I is the identity matrix.
- This is the squared Euclidean norm of vector w.
What are the constraints in the final MOMA?
- N w = 0 (steady state)
- wj = 0 (if reaction j is knocked out)
- ∀i, 1 ≤ i ≠ j ≤ m, wimin ≤ wi ≤ wimax
✅
What is the effect of the Euclidean norm in MOMA?
- It favors many small changes over few large ones.
- This may not reflect true biological behavior.
Why does MOMA result in convex optimization?
- Because Q = I, which is positive definite.
- The objective is strictly convex → unique solution.
Why are eigenvalues of Q important in QP?
- They tell you if the function is convex.
- All positive eigenvalues → strictly convex → unique minimum.
What does it mean for xTQx if all eigenvalues of Q are positive?
- Q is positive definite → the function is strictly convex.
- Ensures a unique global minimum.
In QP, if the matrix Q is not positive semidefinite it can be…
- negative semidefinite (some zero, all other negative) or
- indefinite (eigenvalues of mixed signs)
What does it mean for for xTQx if Q is positive semidefinite?
The function is convex but may have multiple minima.