-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathutil.py
71 lines (58 loc) · 2.15 KB
/
util.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
# util.py
#
# Copyright 2016 Christian Diener <mail[at]cdiener.com>
#
# MIT license. See LICENSE for more information.
import re
from cobra.core.gene import GPR
from ast import Name, And, Or, BoolOp, Expression
def format_gid(gid):
"""Internal function to strip transcript dot-notation from IDs."""
return re.sub(r"\.\d*", "", gid)
def safe_eval_gpr(expr, conf_genes):
"""Internal function to evaluate a gene-protein rule in an
injection-safe manner (hopefully).
"""
if isinstance(expr, (Expression, GPR)):
return safe_eval_gpr(expr.body, conf_genes)
elif isinstance(expr, Name):
fgid = format_gid(expr.id)
if fgid not in conf_genes:
return 0
return conf_genes[fgid]
elif isinstance(expr, BoolOp):
op = expr.op
if isinstance(op, Or):
return max(safe_eval_gpr(i, conf_genes) for i in expr.values)
elif isinstance(op, And):
return min(safe_eval_gpr(i, conf_genes) for i in expr.values)
else:
raise TypeError("unsupported operation " + op.__class__.__name__)
elif expr is None:
return 0
else:
raise TypeError("unsupported operation " + repr(expr))
def reaction_confidence(rxn, conf_genes):
"""Calculates the confidence for the reaction based on a gene-reaction
rule.
Args:
rxn (cobra.core.Reaction): A reaction with an associated GPR.
conf_genes (dict): A str->int map denoting the mapping of gene IDs
to expression confidence values. Allowed confidence values are -1
(absent/do not include), 0 (unknown), 1 (low confidence),
2 (medium confidence) and 3 (high confidence).
"""
return safe_eval_gpr(rxn.gpr, conf_genes)
def test_model():
"""Gets a small test model.
Returns a small test model for the central carbon metabolism.
Args:
None:
Returns:
cobra model: A model of the central carbon metabolism.
"""
from os.path import split, join
from cobra.io import read_sbml_model
this_dir, _ = split(__file__)
data_path = join(this_dir, "data", "cemet.xml")
return read_sbml_model(data_path)