forked from opencobra/cobrapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_model.py
1300 lines (1065 loc) · 42.3 KB
/
test_model.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Test functions of model.py."""
import os
import warnings
from copy import copy, deepcopy
from math import isnan
from typing import List, Tuple
import numpy as np
import pandas as pd
import pytest
from optlang.symbolics import Expr, Zero
from cobra import Solution
from cobra.core import Group, Metabolite, Model, Reaction
from cobra.exceptions import OptimizationError
from cobra.manipulation.delete import remove_genes
from cobra.util import solver as su
from cobra.util.solver import SolverNotFound, set_objective, solvers
try:
import pytest_benchmark
except ImportError:
pytest_benchmark = None
if pytest_benchmark:
from pytest_benchmark.fixture import BenchmarkFixture
stable_optlang = ["glpk", "cplex", "gurobi"]
optlang_solvers = ["optlang-" + s for s in stable_optlang if s in su.solvers]
def same_ex(ex1: Expr, ex2: Expr) -> bool:
"""Compare two sympy-expressions for mathematical equality.
Parameters
----------
ex1 : optlang.symbolics.Expr
The first sympy-expression.
ex2 : optlang.symbolics.Expr
The second sympy-expression.
Returns
-------
bool
Whether the two expression are mathematically equal.
"""
return ex1.simplify() == ex2.simplify()
def test_add_metabolite(model: Model) -> None:
"""Tests adding a metabolite to a model, including with context.
Parameters
----------
model: cobra.Model
"""
new_metabolite = Metabolite("test_met")
assert new_metabolite not in model.metabolites
with model:
model.add_metabolites(new_metabolite)
assert new_metabolite._model == model
assert new_metabolite in model.metabolites
assert new_metabolite.id in model.solver.constraints
assert new_metabolite._model is None
assert new_metabolite not in model.metabolites
assert new_metabolite.id not in model.solver.constraints
def test_remove_metabolite_subtractive(model: Model) -> None:
"""Remove metabolite from model in a subtractive (not destructive) way.
Checks that the changes to model are reversed when using context.
Parameters
----------
model: cobra.Model
"""
test_metabolite = model.metabolites[4]
test_reactions = test_metabolite.reactions
with model:
model.remove_metabolites(test_metabolite, destructive=False)
assert test_metabolite._model is None
assert test_metabolite not in model.metabolites
assert test_metabolite.id not in model.solver.constraints
for reaction in test_reactions:
assert reaction in model.reactions
assert test_metabolite._model is model
assert test_metabolite in model.metabolites
assert test_metabolite.id in model.solver.constraints
def test_remove_metabolite_destructive(model: Model) -> None:
"""Remove metabolite from a model in a destructive way.
Checks that the changes to model are reversed when using context.
Parameters
----------
model: cobra.Model
"""
test_metabolite = model.metabolites[4]
test_reactions = test_metabolite.reactions
with model:
model.remove_metabolites(test_metabolite, destructive=True)
assert test_metabolite._model is None
assert test_metabolite not in model.metabolites
assert test_metabolite.id not in model.solver.constraints
for reaction in test_reactions:
assert reaction not in model.reactions
assert test_metabolite._model is model
assert test_metabolite in model.metabolites
assert test_metabolite.id in model.solver.constraints
for reaction in test_reactions:
assert reaction in model.reactions
def test_compartments(model: Model) -> None:
"""Test setting and modifying model compartments.
Parameters
----------
model: cobra.Model
"""
assert set(model.compartments) == {"c", "e"}
model = Model("test", "test")
met_c = Metabolite("a_c", compartment="c")
met_e = Metabolite("a_e", compartment="e")
rxn = Reaction("foo")
rxn.add_metabolites({met_e: -1, met_c: 1})
model.add_reactions([rxn])
assert model.compartments == {"c": "", "e": ""}
model.compartments = {"c": "cytosol"}
assert model.compartments == {"c": "cytosol", "e": ""}
def test_model_remove_reaction(model: Model) -> None:
"""Test remove_reactions() to remove reaction(s).
Parameters
----------
model: cobra.Model
"""
old_reaction_count = len(model.reactions)
with model:
model.remove_reactions(["PGI"])
assert len(model.reactions) == old_reaction_count - 1
with pytest.raises(KeyError):
model.reactions.get_by_id("PGI")
model.remove_reactions(model.reactions[:1])
assert len(model.reactions) == old_reaction_count - 2
assert len(model.reactions) == old_reaction_count
assert "PGI" in model.reactions
tmp_metabolite = Metabolite("testing")
model.reactions[0].add_metabolites({tmp_metabolite: 1})
assert tmp_metabolite in model.metabolites
model.remove_reactions(model.reactions[:1], remove_orphans=True)
assert tmp_metabolite not in model.metabolites
with model:
model.reactions[0].add_metabolites({tmp_metabolite: 1})
assert tmp_metabolite in model.metabolites
assert tmp_metabolite not in model.metabolites
biomass_before = model.slim_optimize()
with model:
model.remove_reactions([model.reactions.Biomass_Ecoli_core])
assert np.isclose(model.slim_optimize(), 0)
assert np.isclose(model.slim_optimize(), biomass_before)
def test_reaction_remove(model: Model) -> None:
"""Test remove orphans in Reaction().remove_from_model.
This function test that remove_orphans=True removes related metabolites when
supposed to and doesn't remove when not supposed to (when this metabolite is in
reactions not removed).
Parameters
----------
model: cobra.Model to use
"""
old_reaction_count = len(model.reactions)
tmp_metabolite = Metabolite("testing")
# Delete without removing orphan
model.reactions[0].add_metabolites({tmp_metabolite: 1})
assert len(tmp_metabolite.reactions) == 1
# Esnsure the stoichiometry is still the same using different objects
removed_reaction = model.reactions[0]
original_stoich = {
i.id: value for i, value in removed_reaction._metabolites.items()
}
model.reactions[0].remove_from_model(remove_orphans=False)
assert len(original_stoich) == len(removed_reaction._metabolites)
for met in removed_reaction._metabolites:
assert original_stoich[met.id] == removed_reaction._metabolites[met]
assert met is not model.metabolites
# Make sure it's still in the model
assert tmp_metabolite in model.metabolites
assert len(tmp_metabolite.reactions) == 0
assert len(model.reactions) == old_reaction_count - 1
# Now try with removing orphans
model.reactions[0].add_metabolites({tmp_metabolite: 1})
assert len(tmp_metabolite.reactions) == 1
model.reactions[0].remove_from_model(remove_orphans=True)
assert tmp_metabolite not in model.metabolites
assert len(tmp_metabolite.reactions) == 0
assert len(model.reactions) == old_reaction_count - 2
# It shouldn't remove orphans if it's in 2 reactions however
model.reactions[0].add_metabolites({tmp_metabolite: 1})
model.reactions[1].add_metabolites({tmp_metabolite: 1})
assert len(tmp_metabolite.reactions) == 2
model.reactions[0].remove_from_model(remove_orphans=False)
assert tmp_metabolite in model.metabolites
assert len(tmp_metabolite.reactions) == 1
assert len(model.reactions) == old_reaction_count - 3
def test_reaction_delete(model: Model) -> None:
"""Test reaction removal using the Reaction.delete() function.
This function calls Reaction().remove_from_model, since it is deprecated.
Parameters
----------
model: cobra.Model to use
"""
old_reaction_count = len(model.reactions)
tmp_metabolite = Metabolite("testing")
# Delete without removing orphan
model.reactions[0].add_metabolites({tmp_metabolite: 1})
assert len(tmp_metabolite.reactions) == 1
with pytest.warns(DeprecationWarning):
model.reactions[0].delete(remove_orphans=False)
# Make sure it's still in the model
assert tmp_metabolite in model.metabolites
assert len(tmp_metabolite.reactions) == 0
assert len(model.reactions) == old_reaction_count - 1
# Now try it with removing orphans
model.reactions[0].add_metabolites({tmp_metabolite: 1})
assert len(tmp_metabolite.reactions) == 1
model.reactions[0].delete(remove_orphans=True)
assert tmp_metabolite not in model.metabolites
assert len(tmp_metabolite.reactions) == 0
assert len(model.reactions) == old_reaction_count - 2
# It shouldn't remove orphans if it's in 2 reactions however
model.reactions[0].add_metabolites({tmp_metabolite: 1})
model.reactions[1].add_metabolites({tmp_metabolite: 1})
assert len(tmp_metabolite.reactions) == 2
model.reactions[0].delete(remove_orphans=False)
assert tmp_metabolite in model.metabolites
assert len(tmp_metabolite.reactions) == 1
assert len(model.reactions) == old_reaction_count - 3
def test_remove_gene(model: Model) -> None:
"""Test remove_gene from model.
Parameters
----------
model: cobra.Model
"""
target_gene = model.genes[0]
gene_reactions = list(target_gene.reactions)
with warnings.catch_warnings():
warnings.simplefilter("ignore")
remove_genes(model, [target_gene])
assert target_gene.model is None
# Make sure the reaction was removed from the model
assert target_gene not in model.genes
# Ensure the old reactions no longer have a record of the gene
for reaction in gene_reactions:
assert target_gene not in reaction.genes
def test_group_model_reaction_association(model: Model) -> None:
"""Test associating reactions with group in a model.
This function will also remove the group from the model and check that
reactions are no longer associated with the group
Parameters
----------
model: cobra.Model
"""
num_members = 5
reactions_for_group = model.reactions[0:num_members]
group = Group("arbitrary_group1")
group.add_members(reactions_for_group)
group.kind = "collection"
model.add_groups([group])
# group should point to and be associated with the model
assert group._model is model
assert group in model.groups
# model.get_associated_groups should find the group for each reaction
# we added to the group
for reaction in reactions_for_group:
assert group in model.get_associated_groups(reaction)
# remove the group from the model
model.remove_groups([group])
assert group not in model.groups
assert group._model is not model
for reaction in reactions_for_group:
assert group not in model.get_associated_groups(reaction)
def test_group_members_add_to_model(model: Model) -> None:
"""Test adding a group with reactions to a model.
This function will remove some reactions from a model, add them to a group, and
test that the reactions aren't in the model. Later, the test will add the group
to the model, and check the reactions were added to the model.
Parameters
----------
model: cobra.Model
"""
# remove a few reactions from the model and add them to a new group
num_members = 5
reactions_for_group = model.reactions[0:num_members]
model.remove_reactions(reactions_for_group, remove_orphans=False)
group = Group("arbitrary_group1")
group.add_members(reactions_for_group)
group.kind = "collection"
# the old reactions should not be in the model
for reaction in reactions_for_group:
assert reaction not in model.reactions
# add the group to the model and check that the reactions were added
model.add_groups([group])
assert group in model.groups
for reaction in reactions_for_group:
assert reaction in model.reactions
def test_group_loss_of_elements(model: Model) -> None:
"""Test removal from model removes elements from group.
This function will test that when a metabolite, reaction or gene is removed from
a model, it no longer is a member of any groups.
Parameters
----------
model: cobra.Model
"""
num_members_each = 5
elements_for_group = model.reactions[0:num_members_each]
elements_for_group.extend(model.metabolites[0:num_members_each])
elements_for_group.extend(model.genes[0:num_members_each])
group = Group("arbitrary_group1")
group.add_members(elements_for_group)
group.kind = "collection"
model.add_groups([group])
remove_met = model.metabolites[0]
model.remove_metabolites([remove_met])
remove_rxn = model.reactions[0]
model.remove_reactions([remove_rxn])
remove_gene = model.genes[0]
remove_genes(model, [remove_gene])
assert remove_met not in group.members
assert remove_rxn not in group.members
assert remove_gene not in group.members
def test_exchange_reactions(model: Model) -> None:
"""Test model.exchanges works as intended.
Parameters
----------
model: cobra.Model
"""
assert set(model.exchanges) == {
rxn for rxn in model.reactions if rxn.id.startswith("EX")
}
@pytest.mark.parametrize(
"metabolites, reaction_type, prefix",
[
("exchange", "exchange", "EX_"),
("demand", "demand", "DM_"),
("sink", "sink", "SK_"),
],
indirect=["metabolites"],
)
def test_add_boundary(
model: Model, metabolites: List[Metabolite], reaction_type: str, prefix: str
) -> None:
"""Test add_boundary() function for model.
Parameters
----------
model: cobra.Model
metabolites: List[Metabolites]
This list is generated by the pytest.fixture metabolites(), see conftest.py
in the root test directory.
reaction_type: {"exchange", "demand", "sink"}
The allowed types for boundary, see add_boundary() for types.
prefix: str
"""
for metabolite in metabolites:
reaction = model.add_boundary(metabolite, reaction_type)
assert model.reactions.get_by_id(reaction.id) == reaction
assert reaction.reactants == [metabolite]
assert model.constraints[metabolite.id].expression.has(
model.variables[prefix + metabolite.id]
)
@pytest.mark.parametrize(
"metabolites, reaction_type, prefix",
[
("exchange", "exchange", "EX_"),
("demand", "demand", "DM_"),
("sink", "sink", "SK_"),
],
indirect=["metabolites"],
)
def test_add_boundary_context(
model: Model, metabolites: List[Metabolite], reaction_type: str, prefix: str
) -> None:
"""Test add_boundary() function for model with context.
Parameters
----------
model: cobra.Model
metabolites: List[Metabolites]
This list is generated by the pytest.fixture metabolites(), see conftest.py
in the root test directory.
reaction_type: {"exchange", "demand", "sink"}
The allowed types for boundary, see add_boundary() for types.
prefix: str
"""
with model:
for metabolite in metabolites:
reaction = model.add_boundary(metabolite, reaction_type)
assert model.reactions.get_by_id(reaction.id) == reaction
assert reaction.reactants == [metabolite]
assert -model.constraints[metabolite.id].expression.has(
model.variables[prefix + metabolite.id]
)
for metabolite in metabolites:
assert prefix + metabolite.id not in model.reactions
assert prefix + metabolite.id not in model.variables.keys()
@pytest.mark.parametrize(
"metabolites, reaction_type",
[("exchange", "exchange"), ("demand", "demand"), ("sink", "sink")],
indirect=["metabolites"],
)
def test_add_existing_boundary(
model: Model, metabolites: List[Metabolite], reaction_type: str
) -> None:
"""Test add_boundary() function for model with existing boundary/metabolite.
Parameters
----------
model: cobra.Model
metabolites: List[Metabolites]
This list is generated by the pytest.fixture metabolites(), see conftest.py
in the root test directory.
reaction_type: {"exchange", "demand", "sink"}
The allowed types for boundary, see add_boundary() for types.
"""
for metabolite in metabolites:
rxn_added = model.add_boundary(metabolite, reaction_type)
rxn_dup = model.add_boundary(metabolite, reaction_type)
assert rxn_dup is rxn_added
@pytest.mark.parametrize("solver", optlang_solvers)
def test_copy_benchmark(model: Model, solver: str, benchmark: BenchmarkFixture) -> None:
"""Test copying a model with benchmark.
Parameters
----------
model: cobra.Model
solver: str
It is a string representing which solver to use. Parametized using
'optlang_solvers' defined above.
benchmark: BenchmarkFixture
"""
def _() -> None:
"""Copy a model.
If the model has no solver, it creates the problem using the solver given as
parameter to the external function.
"""
model.solver = solver
model.copy()
benchmark(_)
@pytest.mark.parametrize("solver", optlang_solvers)
def test_copy_benchmark_large_model(
large_model: Model,
solver: str,
benchmark: BenchmarkFixture,
) -> None:
"""Test copying a large model with benchmark.
Parameters
----------
large_model: cobra.Model
solver: str
It is a string representing which solver to use. Parametized using
'optlang_solvers' defined above.
benchmark: BenchmarkFixture
"""
def _() -> None:
"""Copy a large model.
If the model has no solver, it creates the problem using the solver given as
parameter to the external function.
"""
large_model.solver = solver
large_model.copy()
benchmark(_)
def test_copy(model: Model) -> None:
"""Test copying a model and modifying the copy.
This function tests that modifying the copy should not modifying the original, by
deleting reactions in the copy (# of reactions in the original should not change).
This function also tests that GPRs are copied by content, not by reference, and
that the model copy does not copy the context.
Parameters
----------
model: cobra.Model
"""
# Deleting reactions in copy does not change number of reactions in the original
model_copy = model.copy()
old_reaction_count = len(model.reactions)
assert model_copy.notes is not model.notes
assert model_copy.annotation is not model.annotation
assert len(model.reactions) == len(model_copy.reactions)
assert len(model.metabolites) == len(model_copy.metabolites)
assert len(model.groups) == len(model_copy.groups)
assert len(model.genes) == len(model_copy.genes)
# test if GPRs are copied by content but not by reference
assert model.reactions[0].gpr == model_copy.reactions[0].gpr
assert id(model.reactions[0].gpr.body) != id(model_copy.reactions[0].gpr.body)
model_copy.remove_reactions(model_copy.reactions[0:5])
assert old_reaction_count == len(model.reactions)
assert len(model.reactions) != len(model_copy.reactions)
# Copying a model should not copy its context
with model:
model.remove_reactions([model.reactions.ACALD])
cp_model = model.copy()
assert len(cp_model._contexts) == 0
assert "ACALD" not in cp_model.reactions
def test_copy_with_groups(model: Model) -> None:
"""Copy model with groups and check that groups are copied correctly.
Parameters
----------
model: cobra.Model
"""
sub = Group("pathway", members=[model.reactions.PFK, model.reactions.FBA])
model.add_groups([sub])
model_copy = model.copy()
assert len(model_copy.groups) == len(model.groups)
assert len(model_copy.groups.get_by_id("pathway")) == len(
model.groups.get_by_id("pathway")
)
def test_deepcopy_benchmark(model: Model, benchmark: BenchmarkFixture) -> None:
"""Benchmark deepcopying a model.
Parameters
----------
model: cobra.Model
benchmark: BenchmarkFixture
"""
benchmark(deepcopy, model)
def test_deepcopy(model: Model) -> None:
"""Test deepcopying works, and maintains reference structures.
Parameters
----------
model: cobra.Model
"""
# Reference structures are maintained when deepcopying
model_copy = deepcopy(model)
for gene, gene_copy in zip(model.genes, model_copy.genes):
assert gene.id == gene_copy.id
reactions = sorted(i.id for i in gene.reactions)
reactions_copy = sorted(i.id for i in gene_copy.reactions)
assert reactions == reactions_copy
for reaction, reaction_copy in zip(model.reactions, model_copy.reactions):
assert reaction.id == reaction_copy.id
metabolites = sorted(i.id for i in reaction._metabolites)
metabolites_copy = sorted(i.id for i in reaction_copy._metabolites)
assert metabolites == metabolites_copy
def test_add_reaction_orphans(model: Model) -> None:
"""Test orphan behavior when adding reactions.
Need to verify that no orphan genes or metabolites are contained in reactions
after adding them to the model.
Parameters
---------
model: cobra.Model
"""
model = model.__class__("test")
model.add_reactions((x.copy() for x in model.reactions))
genes = []
metabolites = []
for x in model.reactions:
genes.extend(x.genes)
metabolites.extend(x._metabolites)
orphan_genes = [x for x in genes if x.model is not model]
orphan_metabolites = [x for x in metabolites if x.model is not model]
# Check for dangling genes when running Model.add_reactions
assert len(orphan_genes) == 0
# Check for dangling metabolites when running Model.add_reactions
assert len(orphan_metabolites) == 0
def test_merge_models(model: Model, tiny_toy_model: Model) -> None:
"""Test merging models.
Parameters
----------
model: cobra.Model
tiny_toy_model: cobra.Model
"""
with model, tiny_toy_model:
# Add some cons/vars to tiny_toy_model for testing merging
tiny_toy_model.add_reactions([Reaction("EX_glc__D_e")])
variable = tiny_toy_model.problem.Variable("foo")
constraint = tiny_toy_model.problem.Constraint(
variable, ub=0, lb=0, name="constraint"
)
tiny_toy_model.add_cons_vars([variable, constraint])
merged = model.merge(
tiny_toy_model, inplace=False, objective="sum", prefix_existing="tiny_"
)
assert "ex1" in merged.reactions
assert "ex1" not in model.reactions
assert merged.reactions.ex1.objective_coefficient == 1
assert (
merged.reactions.get_by_id("Biomass_Ecoli_core").objective_coefficient == 1
)
assert "tiny_EX_glc__D_e" in merged.reactions
assert "foo" in merged.variables
# Test reversible in-place model merging
with model:
model.merge(
tiny_toy_model, inplace=True, objective="left", prefix_existing="tiny_"
)
assert "ex1" in model.reactions
assert "constraint" in model.constraints
assert "foo" in model.variables
assert "tiny_EX_glc__D_e" in model.reactions
assert (
model.objective.expression.simplify()
== model.reactions.get_by_id(
"Biomass_Ecoli_core"
).flux_expression.simplify()
)
assert "ex1" not in model.reactions
assert "constraint" not in model.constraints
assert "foo" not in model.variables
assert "tiny_EX_glc__D_e" not in model.reactions
@pytest.mark.parametrize("solver", optlang_solvers)
def test_change_objective_benchmark(
model: Model, benchmark: BenchmarkFixture, solver: str
) -> None:
"""Benchmark changing objective in model.
Parameters
----------
model: cobra.Model
benchmark: BenchmarkFixture
solver: str
Solver to use. Parametized using 'optlang_solvers' defined above.
"""
atpm = model.reactions.get_by_id("ATPM")
def benchmark_change_objective():
model.objective = atpm.id
model.solver = solver
benchmark(benchmark_change_objective)
def test_get_objective_direction(model: Model) -> None:
"""Test getting objective.
Parameters
----------
model: cobra.Model
"""
assert model.objective_direction == "max"
value = model.slim_optimize()
assert np.isclose(value, 0.874, 1e-3)
def test_set_objective_direction(model: Model) -> None:
"""Test setting objective.
Parameters
----------
model: cobra.Model
"""
with model:
model.objective_direction = "min"
assert model.objective_direction == "min"
value = model.slim_optimize()
assert value == 0.0
assert model.objective_direction == "max"
def test_slim_optimize(model: Model) -> None:
"""Test slim_optimize with context.
Parameters
----------
model: cobra.Model
"""
with model:
assert model.slim_optimize() > 0.872
model.reactions.Biomass_Ecoli_core.lower_bound = 10
assert isnan(model.slim_optimize())
with pytest.raises(OptimizationError):
model.slim_optimize(error_value=None)
@pytest.mark.parametrize("solver", optlang_solvers)
def test_optimize(model: Model, solver: str) -> None:
"""Test optimizing a model.
Parameters
----------
model: cobra.Model
solver: str
Solver to use. Parametized using 'optlang_solvers' defined above.
"""
model.solver = solver
with model:
assert model.optimize().objective_value > 0.872
model.reactions.Biomass_Ecoli_core.lower_bound = 10
with pytest.warns(UserWarning):
model.optimize()
with pytest.raises(OptimizationError):
model.optimize(raise_error=True)
def test_change_objective(model: Model) -> None:
"""Test changing objective.
Parameters
----------
model: cobra.Model
"""
# Test for correct optimization behavior
model.optimize()
assert model.reactions.Biomass_Ecoli_core.x > 0.5
with model:
model.objective = model.reactions.EX_etoh_e
model.optimize()
assert model.reactions.Biomass_Ecoli_core.x < 0.5
assert model.reactions.Biomass_Ecoli_core.objective_coefficient == 1
model.optimize()
assert model.reactions.Biomass_Ecoli_core.x > 0.5
# Test changing objective
biomass = model.reactions.get_by_id("Biomass_Ecoli_core")
atpm = model.reactions.get_by_id("ATPM")
model.objective = atpm.id
assert atpm.objective_coefficient == 1.0
assert biomass.objective_coefficient == 0.0
assert su.linear_reaction_coefficients(model) == {atpm: 1.0}
# Change it back using object itself
model.objective = biomass
assert atpm.objective_coefficient == 0.0
assert biomass.objective_coefficient == 1.0
# Set both to 1 with a list
model.objective = [atpm, biomass]
assert atpm.objective_coefficient == 1.0
assert biomass.objective_coefficient == 1.0
# Set both using a dict
model.objective = {atpm: 0.2, biomass: 0.3}
assert abs(atpm.objective_coefficient - 0.2) < 10**-9
assert abs(biomass.objective_coefficient - 0.3) < 10**-9
# Test setting by index
model.objective = model.reactions.index(atpm)
assert su.linear_reaction_coefficients(model) == {atpm: 1.0}
# Test by setting list of indexes
model.objective = [model.reactions.index(reaction) for reaction in [atpm, biomass]]
assert su.linear_reaction_coefficients(model) == {atpm: 1.0, biomass: 1.0}
def test_problem_properties(model: Model) -> None:
"""Test model problem properties.
Parameters
----------
model: cobra.Model
"""
new_variable = model.problem.Variable("test_variable")
new_constraint = model.problem.Constraint(Zero, name="test_constraint", lb=0)
model.add_cons_vars([new_variable, new_constraint])
assert "test_variable" in model.variables
assert "test_constraint" in model.constraints
model.remove_cons_vars([new_constraint, new_variable])
assert "test_variable" not in model.variables
assert "test_constraint" not in model.variables
def test_solution_data_frame(model: Model) -> None:
"""Test that solution is transformed correctly to a Pandas data frame.
Parameters
----------
model: cobra. Model
"""
solution = model.optimize().to_frame()
assert isinstance(solution, pd.DataFrame)
assert "fluxes" in solution
assert "reduced_costs" in solution
def test_context_manager(model: Model) -> None:
"""Test that the context manager works.
Parameters
----------
model: cobra.Model
"""
bounds0 = model.reactions[0].bounds
bounds1 = (1, 2)
bounds2 = (3, 4)
# Trigger a nested model context, ensuring that bounds are
# preserved at each level
with model:
model.reactions[0].bounds = bounds1
with model:
model.reactions[0].bounds = bounds2
assert model.reactions[0].bounds == bounds2
assert model.reactions[0].bounds == bounds1
assert model.reactions[0].bounds == bounds0
def test_objective_coefficient_reflects_changed_objective(model: Model) -> None:
"""Test that changing objectives is reflected in the objectives changing.
Parameters
----------
model: cobra.Model
"""
biomass_r = model.reactions.get_by_id("Biomass_Ecoli_core")
assert biomass_r.objective_coefficient == 1
model.objective = "PGI"
assert biomass_r.objective_coefficient == 0
assert model.reactions.PGI.objective_coefficient == 1
def test_change_objective_through_objective_coefficient(model: Model) -> None:
"""Test that changing the objective coefficients will change the objective.
Parameters
----------
model: cobra.Model
"""
biomass_r = model.reactions.get_by_id("Biomass_Ecoli_core")
pgi = model.reactions.PGI
pgi.objective_coefficient = 2
coef_dict = model.objective.expression.as_coefficients_dict()
# Check that objective has been updated
assert coef_dict[pgi.forward_variable] == 2.0
assert coef_dict[pgi.reverse_variable] == -2.0
# Check that original objective is still in there
assert coef_dict[biomass_r.forward_variable] == 1.0
assert coef_dict[biomass_r.reverse_variable] == -1.0
def test_transfer_objective(model: Model) -> None:
"""Test assigning objective from a different mdoel objective.
Parameters
----------
model: cobra.Model
"""
new_mod = Model("new model")
new_mod.add_reactions(model.reactions)
new_mod.objective = model.objective
assert {str(x) for x in model.objective.expression.args} == {
str(x) for x in new_mod.objective.expression.args
}
new_mod.slim_optimize()
assert abs(new_mod.objective.value - 0.874) < 0.001
def test_model_from_other_model(model: Model) -> None:
"""Test creating model from other model.
Parameters
----------
model: cobra.Model
"""
model = Model(id_or_model=model)
for reaction in model.reactions:
assert reaction == model.reactions.get_by_id(reaction.id)
def test_add_reactions(model: Model) -> None:
"""Test add_reactions() function to add reactions to model.
Parameters
----------
model: cobra.Model
"""
r1 = Reaction("r1")
r1.add_metabolites({Metabolite("A"): -1, Metabolite("B"): 1})
r1.lower_bound, r1.upper_bound = -999999.0, 999999.0
r2 = Reaction("r2")
r2.add_metabolites({Metabolite("A"): -1, Metabolite("C"): 1, Metabolite("D"): 1})
r2.lower_bound, r2.upper_bound = 0.0, 999999.0
model.add_reactions([r1, r2])
r2.objective_coefficient = 3.0
assert r2.objective_coefficient == 3.0
assert model.reactions[-2] == r1
assert model.reactions[-1] == r2
assert isinstance(model.reactions[-2].reverse_variable, model.problem.Variable)
coefficients_dict = model.objective.expression.as_coefficients_dict()
biomass_r = model.reactions.get_by_id("Biomass_Ecoli_core")
assert coefficients_dict[biomass_r.forward_variable] == 1.0
assert coefficients_dict[biomass_r.reverse_variable] == -1.0
assert coefficients_dict[model.reactions.r2.forward_variable] == 3.0
assert coefficients_dict[model.reactions.r2.reverse_variable] == -3.0
def test_add_reactions_single_existing(model: Model) -> None:
"""Test adding a reaction already present to a model.
Parameters
----------
model: cobra.Model
"""
rxn = model.reactions[0]
r1 = Reaction(rxn.id)
r1.add_metabolites({Metabolite("A"): -1, Metabolite("B"): 1})
r1.lower_bound, r1.upper_bound = -999999.0, 999999.0
model.add_reactions([r1])
assert rxn in model.reactions
assert r1 is not model.reactions.get_by_id(rxn.id)