-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfix_namespaces_in_sedml_doc.py
60 lines (48 loc) · 2.03 KB
/
fix_namespaces_in_sedml_doc.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
from lxml import etree
import libsbml
import os
def fix_namespaces(filename):
""" Fix the namespaces in a SED-ML file and save the file in place
* Remove duplicate SED-ML namespace declarations -- automatically fixed by LXML
* Add namespaces for models
Args:
filename (:obj:`str`): file name of the SEDML file (full path)
"""
# parse file
doc_etree = etree.parse(filename)
root = doc_etree.getroot()
# get models
default_ns_uri = root.nsmap[None]
namespaces = {'sedml': default_ns_uri}
models = root.xpath('/sedml:sedML/sedml:listOfModels/sedml:model', namespaces=namespaces)
# get namespaces for models
model_namespaces = {}
for model in models:
model_filename = os.path.join(os.path.dirname(filename), model.get('source'))
if os.path.isfile(model_filename):
model_doc = libsbml.readSBMLFromFile(model_filename)
model_namespaces['sbml'] = model_doc.getURI()
for i_plugin in range(model_doc.getNumPlugins()):
plugin = model_doc.getPlugin(i_plugin)
package_name = plugin.getPackageName()
if package_name in ['fbc', 'qual']:
model_namespaces[package_name] = plugin.getURI()
# add namespace for associated model
root_namespaces = model_namespaces
for prefix, uri in root.nsmap.items():
if root_namespaces.get(prefix, None) and root_namespaces.get(prefix, None) != uri:
raise Exception('Namespaces clash')
root_namespaces[prefix] = uri
root2 = etree.Element(root.tag, nsmap=root_namespaces, attrib=root.attrib)
doc_etree_2 = etree.ElementTree(root2)
for child in root.getchildren():
root2.append(child)
# save fixed file
doc_etree_2.write(filename,
xml_declaration=True,
encoding="utf-8",
standalone=False,
pretty_print=True)
def run(sedml_filenames):
for filename in sedml_filenames:
fix_namespaces(filename)