Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
COBREXA.jl
Manage
Activity
Members
Plan
External wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LCSB-BioCore
COBREXA.jl
Commits
64291b6a
Unverified
Commit
64291b6a
authored
2 years ago
by
St. Elmo
Browse files
Options
Downloads
Patches
Plain Diff
fix more kwargs
parent
f2d37f03
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/base/types/wrappers/GeckoModel.jl
+2
-2
2 additions, 2 deletions
src/base/types/wrappers/GeckoModel.jl
test/analysis/gecko.jl
+2
-2
2 additions, 2 deletions
test/analysis/gecko.jl
with
4 additions
and
4 deletions
src/base/types/wrappers/GeckoModel.jl
+
2
−
2
View file @
64291b6a
...
...
@@ -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
],
),
...
...
This diff is collapsed.
Click to expand it.
test/analysis/gecko.jl
+
2
−
2
View file @
64291b6a
...
...
@@ -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
,
g
roup
_mass_
limit
=
_
->
total_protein_mass
,
g
ene
_mass_
group_bound
=
_
->
total_protein_mass
,
)
opt_model
=
flux_balance_analysis
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment