我有一个来自 Reactome 的 sbml 模型,您可以从https://reactome.org/content/detail/R-HSA-156581下载它并单击 sbml。对于<reaction>
,其中一些具有 的属性<listOfModifiers>
,我正在尝试使用 libsbml 或 cobrapy 来做到这一点。
我的代码读取了 sbml 文件,但如何获取属性<listOfModifiers>
?
sbml_test_file = "./R-HSA-156581.sbml"
# Using the libSBML python API
# http://model.caltech.edu/software/libsbml/5.18.0/docs/formatted/python-api/libsbml-python-reading-files.html
reader = libsbml.SBMLReader()
document = reader.readSBML(sbml_test_file)
model = document.getModel()