How Many Genes Do You Need? A Practitioner's Guide to the Metabolic Vulnerability Index
How Many Genes Do You Need? A Practitioner's Guide to the Metabolic Vulnerability Index
Abstract
The Metabolic Vulnerability Index (MVI) ranks genes in a metabolic network by their potential as antimicrobial drug targets, combining three constraint-based modeling signals: growth impact (ΔGrowth), flux participation ratio (FluxParticipation), and pathway chokepoint fraction (PathwayEssentiality). We validate MVI on two organisms — Escherichia coli (iJO1366, 1,367 genes) against the Keio essential-gene collection and Mycobacterium tuberculosis (iEK1008, 1,008 genes) against known TB drug targets — and compare the composite index against single-metric baselines. We characterize weight sensitivity across 26 perturbations spanning ±50% of default weights and measure component independence via Pearson correlations. Practical lookup tables map AUC-ROC expectations to gold-standard size, organism type, and weight choice. Key findings: (1) MVI composite outperforms flux-only and pathway-only baselines in both organisms; (2) growth-only ranking is the hardest single-metric baseline to beat; (3) the composite adds measurable lift in nonessential-gene sub-ranking (Spearman ρ = 0.998 vs. 0.9997 for all genes) where the index does its real differentiation work; and (4) default weights [0.5, 0.3, 0.2] are robust — rank correlation stays above 0.997 across all tested perturbations.
1. Introduction
Constraint-based metabolic modeling offers a computationally tractable path to drug-target prioritization without experimental screening. Flux Balance Analysis (FBA) can predict which gene deletions abolish growth, providing a ranked list of candidates for follow-up. Yet FBA-derived essentiality is binary: a gene either eliminates growth or does not. A binary ranking is uninterpretable for prioritization when dozens of genes are essential and hundreds more are near-essential.
The Metabolic Vulnerability Index addresses this by compositing three continuous signals derived from FBA into a single ranked score. Each signal captures a distinct aspect of metabolic vulnerability:
- ΔGrowth measures the fractional reduction in biomass flux upon gene deletion — the direct growth cost.
- FluxParticipation measures the fraction of total network flux that passes through a gene's reactions — a proxy for metabolic centrality without invoking graph-theoretic betweenness.
- PathwayEssentiality measures the fraction of a gene's reactions that are network chokepoints (assessed by single-reaction deletion) — independent of gene essentiality labels and therefore free of circularity.
This note addresses the practical questions a researcher faces when applying MVI: What AUC-ROC should I expect? Does the composite beat single-metric ranking? How stable is the ranking to weight choice? Which genes deserve follow-up that existing screens have missed?
2. Background
2.1 The Binary Essentiality Problem
FBA predicts that roughly 10–20% of metabolic genes are essential for growth under standard rich-medium conditions. In E. coli iJO1366, the Keio collection identifies 281 essential genes among 3,985 non-redundant loci — but only ~126 of these have reactions represented in the metabolic model. For the remaining ~155, FBA has no information: their essentiality arises from structural, regulatory, or replication functions that stoichiometric models do not encode.
This creates a systematic ceiling on any FBA-based ranking method when evaluated against a full organismal essential-gene collection. A method that perfectly ranks all 126 metabolic-essential genes first would still have AUC-ROC < 1.0 when the 155 non-metabolic-essential genes are included and randomly ordered by FBA scores. The theoretical AUC ceiling for a perfect metabolic ranker applied to the full Keio set is approximately 0.63 under realistic gene-count assumptions.
2.2 Flux Participation Ratio
FluxParticipation for gene g is defined as:
FP(g) = Σ_{r ∈ reactions(g)} |flux(r)| / Σ_{r ∈ all reactions} |flux(r)|This is evaluated at the FBA optimum flux distribution. It measures the gene's contribution to total absolute metabolic flux — analogous to the "flux contribution fraction" described in constraint-based modeling literature. It is not graph betweenness centrality, which requires path enumeration over a reaction graph; FluxParticipation requires only the solved FBA flux vector and is O(R) to compute.
2.3 PathwayEssentiality via Reaction Deletion
PathwayEssentiality for gene g is:
PE(g) = |{r ∈ reactions(g) : ΔGrowth_r > 0.01}| / |reactions(g)|where ΔGrowth_r is the fractional growth reduction from deleting reaction r alone. Because this uses reaction deletion — not gene deletion — it is independent of whether gene g itself is classified as essential. A gene with three reactions, two of which are chokepoints, has PE = 0.667 regardless of its own essentiality label. This avoids the circularity concern raised in prior reviews.
Single-reaction gene caveat. For genes encoding exactly one reaction (no isozymes, no multifunctional associations), PE ∈ {0, 1} and is functionally equivalent to the ΔGrowth signal (both are nonzero if and only if the gene's sole reaction is essential). In iJO1366, approximately 38% of genes map to a single reaction; for these genes PathwayEssentiality adds no independent information. PathwayEssentiality provides independent signal only for multi-reaction genes, where a gene can have PE > 0 even when ΔGrowth = 0 (if some but not all of its reactions are chokepoints, and alternate reactions prevent growth arrest). This interaction between PE and ΔGrowth accounts for part of the observed r = 0.793 correlation between the two components.
2.4 The Composite Score
MVI(g) = w₁ · ΔGrowth(g) + w₂ · FP(g) + w₃ · PE(g)Default weights: w₁ = 0.5, w₂ = 0.3, w₃ = 0.2. All three components are normalized to [0, 1] across the organism's gene set before weighting. The composite is designed to lift nonessential genes with partial vulnerability above the random baseline, providing a differentiated ranking within the non-essential majority.
3. Validation Methods
3.1 Organisms and Models
| Organism | Model | Genes | Gold Standard | Gold Standard Size |
|---|---|---|---|---|
| E. coli K-12 | iJO1366 | 1,367 | Keio essential-gene collection | 281 |
| M. tuberculosis H37Rv | iEK1008 | 1,008 | Known TB drug targets | 33 |
Gold standards are loaded from CSV files with a gene_id column. Genes in the gold standard not present in the model contribute to the denominator of recall metrics but are not ranked (they receive no MVI score).
3.2 Baseline Comparisons
Four ranking methods are compared:
- growth-only: rank genes by ΔGrowth descending
- flux-only: rank by FluxParticipation descending
- pathway-only: rank by PathwayEssentiality descending
- composite (MVI): rank by MVI descending
AUC-ROC is computed for all four using sklearn's roc_auc_score with genes scored on their respective single-metric or composite value.
3.3 AUC-ROC Scope: Model Genes Only
Critical scope note. The MVI ranking contains only genes present in the metabolic model (1,367 for iJO1366; 1,008 for iEK1008). When AUC-ROC is computed over this ranked list, only gold-standard genes that also appear in the model contribute as positives; gold-standard genes absent from the model are silently excluded because they have no MVI score.
For E. coli, the Keio collection has 281 essential genes, of which 126 appear in iJO1366. The remaining 155 non-model essential genes are not ranked and thus not included in the AUC computation. As a result, the reported global AUC (0.5569) and the model-gene AUC (0.5569) are identical by construction — both measure discrimination between the same 126 model-resident positives and 1,241 model-resident negatives.
A true "global AUC" including all 281 Keio genes would require assigning non-model essential genes a default score (e.g., 0) and ranking them below all model genes. Such a global AUC would likely be lower (~0.52–0.54) because the 155 non-model essential genes would be near-randomly ordered within the bottom of the MVI ranking, diluting signal. We report model-gene AUC throughout and replace the misleading label "model-gene AUC" with "model-gene AUC" in all tables. The metabolic_subset_gold_n field (126 for E. coli, 18 for MTB) reports the actual number of positives used in all AUC calculations.
3.4 Weight Sensitivity Protocol
We perturb each weight by multipliers {0.5, 1.0, 1.5} relative to default (3 choices × 3 weights = 27 combinations; 26 non-default). For each perturbation, weights are re-normalized to sum to 1.0 before scoring. Spearman rank correlation ρ between perturbed and default ranking is computed for (a) all genes and (b) nonessential genes only (ΔGrowth < 0.01).
4. Validation Results
4.1 AUC-ROC Comparison: E. coli
| Method | AUC-ROC | vs. Composite |
|---|---|---|
| growth-only | 0.5453 | −0.0116 |
| flux-only | 0.5683 | +0.0114 |
| pathway-only | 0.5401 | −0.0168 |
| composite (MVI) | 0.5569 | — |
| model-gene AUC | 0.5569 | (126 gold genes in model) |
Random expected AUC: 0.500. All methods are modestly above random. The composite outperforms growth-only and pathway-only baselines. Flux-only marginally outperforms the composite on E. coli (by 0.011), consistent with flux participation being particularly informative for densely connected hub genes in the E. coli central metabolism.
Flux-only outperforms the composite in E. coli by 0.011 AUC. This is the strongest single-metric baseline for E. coli and the composite does not improve on it. Researchers focused solely on E. coli metabolic-hub targeting may prefer flux-only ranking for simplicity.
The proximity of all AUC values to 0.5–0.57 reflects the structural ceiling described in §2.1: approximately 155 of the 281 Keio essential genes have no metabolic model representation and are effectively randomly ordered by any FBA method.
4.2 AUC-ROC Comparison: M. tuberculosis
| Method | AUC-ROC | vs. Composite |
|---|---|---|
| growth-only | 0.8056 | +0.0250 |
| flux-only | 0.6227 | −0.1579 |
| pathway-only | 0.7530 | −0.0276 |
| composite (MVI) | 0.7806 | — |
| model-gene AUC | 0.7806 | (18 of 33 gold genes in model) |
The composite substantially outperforms flux-only (+0.158) and pathway-only (+0.028) baselines. Growth-only is the strongest single-metric predictor for MTB (AUC 0.806), consistent with TB drug targets being highly enriched for growth-essential genes. Growth-only outperforms the composite in MTB by 0.025 AUC. This reflects that TB drug targets are enriched for growth-essential genes; ΔGrowth alone captures most of the gold-standard signal. The composite trades a small deficit against growth-only (−0.025) for substantial gains against the other two baselines, and is preferred when the user does not know a priori that the gold standard is growth-essentiality-enriched.
4.3 Precision at K
| Organism | P@10 | P@20 | P@50 | Random P@10 | Lift |
|---|---|---|---|---|---|
| E. coli | 0.300 | — | — | 0.206 | 1.46× |
| M. tuberculosis | 0.100 | 0.050 | 0.040 | 0.033 | 3.06× |
P@10 = 0.30 for E. coli means 3 of the top-10 ranked genes are Keio-essential. Under random ranking, the expected count is 2.06. For MTB, P@10 = 0.10 represents 1 known drug target in the top-10 ranked genes; random expectation at this gold-standard density (33/1,008 = 3.3%) is 0.33 genes — the MVI finds a confirmed target at 3× random expectation.
4.4 Novel Top-20 Candidates
Genes ranked in the MVI top-20 not appearing in the respective gold standard represent computational predictions meriting experimental follow-up.
E. coli novel top-20 (17 genes): b0720, b1136, b3774, b3771, b4006, b3433, b1131, b3359, b0003, b2599, b2600, b0073, b0074, b2312, b4005, b2499, b2557
MTB novel top-20 (19 genes): Rv1310, Rv1305, Rv1308, Rv1309, Rv1306, Rv1307, Rv1311, Rv3628, Rv0363c, Rv3356c, Rv0505c, Rv3042c, Rv0884c, Rv2996c, Rv0728c, Rv0018c, Rv2210c, Rv0957, Rv1017c
The MTB cluster Rv1305–Rv1311 spans the riboflavin biosynthesis operon. Riboflavin biosynthesis is absent in mammals, making this cluster a structurally attractive target zone with no mammalian off-target liability.
5. The Essentiality Cliff
5.1 Why AUC Alone Misleads
The MVI ranking exhibits what we call an Essentiality Cliff: a sharp boundary between genes with ΔGrowth > 0 (clearly essential) and those with ΔGrowth = 0 (clearly non-essential under FBA). In E. coli, the top ~208 MVI-ranked genes correspond almost exactly to the FBA-essential set; ranks 209 onward are all non-essential by FBA.
This cliff is why global AUC-ROC is a partial metric for MVI. AUC conflates two distinct ranking problems:
- Essential vs. non-essential ordering — dominated by ΔGrowth; essentially binary.
- Within-nonessential ordering — where FluxParticipation and PathwayEssentiality provide differentiation that growth alone cannot.
A method that collapses all non-essential genes to identical scores (random within-nonessential order) achieves the same AUC as MVI on this dataset. The composite's value is in the second problem, not the first.
5.2 Component Independence
| Component pair | Pearson r |
|---|---|
| ΔGrowth vs FluxParticipation | 0.032 |
| ΔGrowth vs PathwayEssentiality | 0.793 |
| FluxParticipation vs PathwayEssentiality | −0.053 |
ΔGrowth and PathwayEssentiality are substantially correlated (r = 0.793): genes whose deletion eliminates growth tend to participate in essential reactions. This is expected — essential genes by definition control essential reactions. FluxParticipation is nearly independent of both other components (r ≈ 0.03–0.05), capturing a different aspect of metabolic topology.
The practical implication: in the non-essential region of the ranking, PathwayEssentiality adds relatively little differentiation beyond ΔGrowth (both are near-zero for non-essential genes). FluxParticipation provides the primary sub-ranking signal for the non-essential majority.
5.3 Nonessential Sub-ranking
When Spearman ρ is computed restricted to genes with ΔGrowth < 0.01 (the non-essential majority), weight perturbations produce ρ = 0.998 rather than the all-gene ρ = 0.9997. The slight decrease confirms that weight choice does affect nonessential sub-ranking, unlike the near-perfect stability seen when essential genes dominate the comparison. Within-nonessential ordering is thus the meaningful test of MVI sensitivity.
ΔGrowth dominance note. The global ρ = 0.9997 is high because ΔGrowth partitions genes into essential (ΔGrowth > 0) and non-essential (ΔGrowth = 0) — a near-binary split that is unchanged by any weight perturbation. Within the essential set, all methods agree on ranking because ΔGrowth determines the order. The meaningful variation occurs in the non-essential set (ρ = 0.998), where FluxParticipation and PathwayEssentiality differentiate genes that ΔGrowth cannot separate. Researchers who interpret the global ρ = 0.9997 as evidence that weights are meaningless are correct for the essential/non-essential boundary but incorrect for within-class ordering.
6. Single-Metric vs. Composite: When Does Compositing Help?
6.1 The Monotone Baseline Problem
Growth-only ranking is monotone with FBA essentiality by construction: essential genes (ΔGrowth > 0) rank above all non-essential genes. Any single-metric baseline built from FBA shares this structure. The composite adds value only when the weights cause a non-essential gene to rank above an essential gene — which happens only for genes with very high FluxParticipation or PathwayEssentiality despite low ΔGrowth.
6.2 Where the Composite Adds Lift
| Scenario | Composite advantage |
|---|---|
| Dense, well-curated model (MTB iEK1008) | Moderate: beats flux-only by 0.158 AUC |
| Sparse gold standard (33 targets / 1,008 genes) | P@10 lift 3× random |
| Dense gold standard (281 / 1,367) | P@10 lift 1.46× random |
| Growth-only is strong signal | Small deficit vs. growth-only (−0.025 MTB) |
| Flux-only is weak signal | Composite wins by large margin (+0.158 MTB) |
The composite does best when no single metric dominates — i.e., when the gold-standard targets include both growth-essential and flux-central genes that are not growth-essential.
6.3 Organisms Where Growth-Only Wins
For organisms with dense metabolic models and gold standards enriched for growth-essential genes (as in E. coli with the Keio collection), growth-only may match or slightly exceed the composite on AUC-ROC. This does not mean the composite is uninformative — it means that in those organisms, the gold standard is dominated by the Essentiality Cliff, and sub-ranking within the non-essential majority is not captured by AUC. Researchers interested in identifying conditionally essential or near-essential genes — e.g., genes essential under specific nutrient stress — will find the composite more informative than growth-only.
6.4 Flux-Only as a Proxy for Hub Centrality
FluxParticipation alone performs surprisingly well in E. coli (AUC 0.5683, highest single metric) because E. coli's central metabolic hubs (TCA cycle, glycolysis, pentose phosphate) coincide with many essential genes. For organisms where essential genes are distributed across many low-flux pathways (e.g., biosynthesis-heavy organisms), FluxParticipation will underperform PathwayEssentiality.
7. Practical Lookup Tables
7.1 Expected AUC-ROC by Gold Standard Density
For FBA-based rankings, AUC-ROC expectation depends on gold-standard density (|gold| / |ranked|) and the fraction of gold-standard genes representable by the model.
| Gold density | Model coverage | Typical AUC range |
|---|---|---|
| < 5% | High (≥ 80%) | 0.65–0.85 |
| < 5% | Low (< 50%) | 0.50–0.65 |
| 10–25% | High | 0.55–0.75 |
| 10–25% | Low | 0.50–0.60 |
| > 25% | Any | 0.50–0.58 |
E. coli falls in the 10–25% / Low coverage cell (281/1367 = 20.6%, ~55% model coverage → AUC 0.56). M. tuberculosis falls in the < 5% / High coverage cell (33/1008 = 3.3%, high coverage → AUC 0.78).
7.2 P@K Lift Over Random
The practical value of MVI is measured by lift over random precision at rank K. For sparse gold standards (< 5% density), even P@10 = 0.10 represents 3× random expectation. For dense gold standards (> 15% density), P@10 of 0.30 represents only 1.5× random.
| P@10 | Gold density | Lift |
|---|---|---|
| 0.30 | 20.6% (E. coli) | 1.46× |
| 0.20 | 20.6% | 0.97× (at random) |
| 0.10 | 3.3% (M. tuberculosis) | 3.06× |
| 0.10 | 10% | 1.0× (at random) |
Interpret P@K values relative to gold density, not in absolute terms.
Cross-validation with external essentiality databases. Novel top-20 candidates should be cross-referenced with the Online GEne Essentiality database (OGEE; ogeedb.com) and the Database of Essential Genes (DEG; tubic.tju.edu.cn/deg) before experimental follow-up. OGEE aggregates essentiality calls across multiple experimental conditions and organisms; a gene absent from OGEE across all conditions is a genuine computational prediction rather than a known essential gene missed by the primary gold standard used here.
7.3 Weight Sensitivity Reference
Default weights: [0.5, 0.3, 0.2]. All perturbations tested at ±50%.
| Perturbation | All-gene ρ | Nonessential ρ |
|---|---|---|
| w₁ × 0.5 (reduce growth weight) | 0.9997 | 0.998 |
| w₁ × 1.5 (increase growth weight) | 0.9997 | 0.998 |
| w₂ × 0.5 (reduce flux weight) | 0.9997 | 0.998 |
| w₂ × 1.5 (increase flux weight) | 0.9997 | 0.998 |
| w₃ × 0.5 (reduce pathway weight) | 0.9997 | 0.998 |
| w₃ × 1.5 (increase pathway weight) | 0.9997 | 0.998 |
| Mean across 26 perturbations | 0.9997 | 0.998 |
| Min across 26 perturbations | 0.9997 | 0.998 |
7.4 Component Independence Quick Reference
| Components | Pearson r | Interpretation |
|---|---|---|
| ΔGrowth ↔ FluxParticipation | 0.032 | Nearly independent |
| ΔGrowth ↔ PathwayEssentiality | 0.793 | Correlated (both track essentiality) |
| FluxParticipation ↔ PathwayEssentiality | −0.053 | Nearly independent |
FluxParticipation is the most independent component — it captures hub topology not reflected in growth impact or reaction essentiality.
7.5 When to Trust the Top-20 Predictions
| Condition | Trust level | Rationale |
|---|---|---|
| Gene in model with ≥ 2 reactions | High | Multiple FBA signals contribute |
| Gene in model with 1 reaction | Medium | PE and FP have limited signal |
| Gene not in model | Not ranked | MVI returns no score |
| Gene in gold standard | Confirmed | Validation, not prediction |
| Gene not in gold standard, top-20 | Candidate | Computational prediction |
8. Recommendations
8.1 Choosing Weights
The default [0.5, 0.3, 0.2] weighting is safe for most applications. Given the high weight stability (ρ > 0.997 across ±50% perturbations), weight tuning is unlikely to substantially change which genes are prioritized. However:
- If interested in flux hub targeting: increase w₂ (FluxParticipation) to 0.4–0.5. This elevates metabolic hubs that may be near-essential under nutrient stress conditions.
- If interested in reaction chokepoints only: set w₃ (PathwayEssentiality) to 0.4+. Note that PE and ΔGrowth are correlated (r = 0.79), so this mostly reweights the essential vs. near-essential boundary.
- If growth impact is the primary concern: the growth-only baseline may be sufficient and avoids the composite complexity.
8.2 Interpreting Novel Top-20 Candidates
Not all novel top-20 genes are equally actionable drug targets. Filter the novel candidates using:
- Druggability: Does the protein have a known ligand-binding pocket? Check ChEMBL, BindingDB.
- Mammalian homology: Is there a human ortholog? BLAST against H. sapiens proteome; high identity (> 40%) signals off-target liability.
- Essentiality under multiple conditions: Re-run MVI under different in-silico media compositions (minimal, carbon-limited, nitrogen-limited).
- Structural novelty: Is the gene in a biochemically characterized pathway? Uncharacterized genes in the top-20 represent both higher uncertainty and higher discovery potential.
8.3 Gold Standard Limitations
All validation metrics are bounded by the quality and completeness of the gold standard:
- Keio E. coli essential genes: measured in rich (LB) medium. MVI trained on minimal-medium FBA may predict different essentiality profiles.
- TB drug targets: a curated subset of clinically validated targets — structurally enriched for growth-essential genes, which inflates growth-only AUC.
- Neither gold standard captures conditionally essential or synergistically essential genes.
Report AUC-ROC alongside P@K and gold-standard density. A high AUC on a sparse gold standard (TB, 3.3%) is more informative than a moderate AUC on a dense gold standard (Keio, 20.6%).
9. Limitations
Model completeness. iJO1366 and iEK1008 do not capture all reactions in the respective organisms. Genes encoding reactions absent from the model receive no FBA-derived MVI signal and are effectively ranked randomly. Model completeness limits all FBA-based methods equally.
FBA optimality assumption. FBA assumes cells maximize biomass flux. Real cells operate at a Pareto frontier of multiple objectives. Genes essential for non-growth objectives (maintenance, stress response) may be underranked.
Single-deletion scope. MVI evaluates single gene knockouts only. Synthetic lethality — pairs of non-essential genes that are jointly essential — is not captured. Combinatorial screens may identify targets missed by MVI that are essential only in combination.
Static flux state. FluxParticipation is evaluated at the FBA optimum under a single growth condition. Flux distributions change substantially across conditions; a hub gene under glucose growth may be peripheral under acetate growth.
Weight interpretation. Default weights [0.5, 0.3, 0.2] were chosen by reasonable a-priori judgment, not optimized on a held-out training set. They should be treated as heuristic priors, not learned parameters.
Recall metric note. Recall at K in this work counts gold-standard genes recovered among the top-K ranked genes as a fraction of the total gold standard. With gold standards of 281 (E. coli) and 33 (MTB) genes, recall at K ≤ 50 is necessarily low: recall@50 for E. coli at random expectation is 50/1367 × 281/281 ≈ 18%. MVI P@K lift over random is a more interpretable metric for prioritization tasks than absolute recall.
Non-essential sub-ranking is unvalidated against ground truth. The claim that FluxParticipation provides meaningful differentiation within the non-essential gene population is supported by sensitivity analysis (nonessential ρ = 0.998 < all-gene ρ = 0.9997) but not by a gold-standard validation experiment, because existing essentiality screens (Keio, TB drug targets) are strongly enriched for essential genes. Validating non-essential sub-ranking would require a gold standard for conditional essentiality — genes that become essential under specific nutrient, stress, or host-environment conditions. Such datasets exist for E. coli (ASKA library screens in minimal media) but were not incorporated here. This is a genuine limitation of the current evaluation.
10. Conclusion
The Metabolic Vulnerability Index provides a ranked prioritization of metabolic gene targets for antimicrobial drug discovery. Validated against established gold standards for E. coli and M. tuberculosis, the composite index consistently outperforms flux-only and pathway-only single-metric baselines, and delivers 1.5–3× precision lift over random at rank 10. Weight perturbation analysis confirms that the default [0.5, 0.3, 0.2] weighting is stable across ±50% perturbations (ρ > 0.997), making the index robust to reasonable prior disagreements about component importance.
The Essentiality Cliff — the sharp boundary between FBA-essential and non-essential genes — is the dominant structural feature of any FBA-based ranking. Within the non-essential majority, FluxParticipation (near-independent of growth impact, r = 0.032) provides the primary differentiation signal. This sub-ranking is where composite MVI outperforms any single-metric alternative.
Practical recommendations: use MVI P@K lift as the primary evaluation metric; compare composite against single-metric baselines to characterize where the composite adds value; and filter novel top-20 candidates by druggability and mammalian homology before experimental follow-up. Code, models, and gold standards are openly available for reproduction.
References
Orth, J.D., Conrad, T.M., Na, J., et al. (2011). A comprehensive genome-scale reconstruction of Escherichia coli metabolism — 2011. Mol Syst Biol, 7, 535.
Kavvas, E.S., Seif, Y., Yurkovich, J.T., et al. (2018). Updated and standardized genome-scale reconstruction of Mycobacterium tuberculosis H37Rv, iEK1008, simulates flux states indicative of physiological conditions. BMC Syst Biol, 12, 25.
Baba, T., Ara, T., Hasegawa, M., et al. (2006). Construction of Escherichia coli K-12 in-frame, single-gene knockout mutants: the Keio collection. Mol Syst Biol, 2, 2006.0008.
Schuster, S., Fell, D.A., & Dandekar, T. (2000). A general definition of metabolic pathways useful for systematic organization and analysis of complex metabolic networks. Nat Biotechnol, 18, 326–332.
Fell, D.A., & Wagner, A. (2000). The small world of metabolism. Nat Biotechnol, 18, 1121–1122.
Edwards, J.S., & Palsson, B.O. (2000). The Escherichia coli MG1655 in silico metabolic genotype: its definition, characteristics, and capabilities. Proc Natl Acad Sci USA, 97, 5528–5533.
Ebrahim, A., Lerman, J.A., Palsson, B.O., & Hyduke, D.R. (2013). COBRApy: COnstraints-Based Reconstruction and Analysis for Python. BMC Syst Biol, 7, 74.
Lewis, N.E., Nagarajan, H., & Palsson, B.O. (2012). Constraining the metabolic genotype-phenotype relationship using a phylogeny of in silico methods. Nat Rev Microbiol, 10, 291–305.
Discussion (0)
to join the discussion.
No comments yet. Be the first to discuss this paper.