Skip to content
Snippets Groups Projects
Unverified Commit 64291b6a authored by St. Elmo's avatar St. Elmo
Browse files

fix more kwargs

parent f2d37f03
No related branches found
No related tags found
No related merge requests found
......@@ -162,13 +162,13 @@ function coupling_bounds(model::GeckoModel)
return (
vcat(
iclb,
ilb[model.coupling_row_reaction],
ilb[model.coupling_row_reaction], #! fix bound
[lb for (_, (lb, _)) in model.coupling_row_gene_product],
[0.0 for _ in model.coupling_row_mass_group],
),
vcat(
icub,
iub[model.coupling_row_reaction],
iub[model.coupling_row_reaction], #! fix bound
[ub for (_, (_, ub)) in model.coupling_row_gene_product],
[ub for (_, ub) in model.coupling_row_mass_group],
),
......
......@@ -25,9 +25,9 @@
gm =
bounded_model |> with_gecko(
reaction_isozymes = get_reaction_isozymes,
gene_product_limit = g -> g == "b2779" ? (0.01, 0.06) : (0.0, 1.0),
gene_product_bounds = g -> g == "b2779" ? (0.01, 0.06) : (0.0, 1.0),
gene_product_molar_mass = get_gene_product_mass,
group_mass_limit = _ -> total_protein_mass,
gene_mass_group_bound = _ -> total_protein_mass,
)
opt_model = flux_balance_analysis(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment