-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtest_f_omics.py
48 lines (39 loc) · 1.56 KB
/
test_f_omics.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
import unittest
MODELS_PATH = 'tests/data/'
EC_CORE_MODEL = MODELS_PATH + 'e_coli_core.xml.gz'
class TestExpressionSet(unittest.TestCase):
def setUp(self):
import numpy as np
self.genes = ["b0356", "b1478", "b3734", "b3731"]
self.conditions = ["Exp#1", "Exp#2", "Exp#3"]
self.expression = np.array(([0.17, 0.20, 0.93],
[0.36, 0.83, 0.77],
[0.87, 0.65, 0.07],
[0.55, 0.49, 0.52]))
from mewpy.omics import ExpressionSet
self.expr = ExpressionSet(self.genes, self.conditions, self.expression)
from cobra.io.sbml import read_sbml_model
model = read_sbml_model(EC_CORE_MODEL)
from mewpy.simulation import get_simulator
self.sim = get_simulator(model)
def test_GIMME(self):
from mewpy.omics import GIMME
solution=GIMME(self.sim, self.expr,cutoff=100)
print(solution)
#self.assertGreater(solution.objective_value,0)
#def test_GIMME_build(self):
# from mewpy.omics import GIMME
# solution, sim = GIMME(self.sim, self.expr, build_model=True)
# print(solution)
# print(sim.simulate())
def test_eFlux(self):
from mewpy.omics import eFlux
solution=eFlux(self.sim, self.expr)
self.assertGreater(solution.objective_value,0)
def test_iMAT(self):
from mewpy.omics import iMAT
iMAT(self.sim, self.expr)
if __name__ == '__main__':
test = TestExpressionSet()
test.setUp()
test.test_GIMME()