Fatal error during SBML import

조회 수: 1 (최근 30일)
Byron Weiss
Byron Weiss 2019년 4월 30일
편집: Rick Paxson 2019년 4월 30일
When trying to import an SBML file to use in SimBiology, I am getting the following error
>> x = sbmlimport('http://www.netpath.org/netslim/EGFR1/EGFR1_SBML.xml')
Error using SimBiology.SBMLReadWrite/sbmlread
A fatal error occurred reading in this file.
Error in sbmlimport (line 96)
ret = sbmlRW.sbmlread(modelString, {'stream'});
A similar error occurs if the linked file above is downloaded and added to the path instead. ( Throwing an error on line 89: ret = privatesbmlio('read',nargout,{tempFileName}); )
Why is this happening? How can I fix it?

답변 (1개)

Rick Paxson
Rick Paxson 2019년 4월 30일
편집: Rick Paxson 2019년 4월 30일
Hello,
It appears that the SBML file you are trying to load is not valid because many of the species are missing the Compartment attribute. I.e. species must specify which compartment they are in.
There are a number of species that are missing this attribute (but not all of them).
E.g.
<species name="SRC" id="PB_1"/>
<species name="PTK2B" id="PB_2"/>
<species name="SRC_PTK2B" id="PB_3"/>
...
Here are some of the species that are properly specified:
<species name="F_PTPN11" compartment="compartment_1" id="PB_447"/>
<species name="T_PTPN11" compartment="compartment_9" id="PB_448"/>
<species name="F_PLCG1" compartment="compartment_1" id="PB_449"/>
...
The error message that you are getting from SimBiology is not helpful. We will fix that.
Rick Paxson

커뮤니티

더 많은 답변 보기:  SimBiology Community

카테고리

Help CenterFile Exchange에서 Import Data에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by