We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code:
LIBSBMLNETWORK_CPP_NAMESPACE::autolayout(&m_sbml, 3, true); string s1 = LIBSBMLNETWORK_CPP_NAMESPACE::getText(&m_sbml, "S1");
With the following model:
<?xml version="1.0" encoding="UTF-8"?> <sbml xmlns="http://www.sbml.org/sbml/level3/version2/core" xmlns:comp="http://www.sbml.org/sbml/level3/version1/comp/version1" level="3" version="2" comp:required="true"> <model metaid="__main" id="__main"> <listOfCompartments> <compartment sboTerm="SBO:0000410" id="default_compartment" spatialDimensions="3" size="1" constant="true"/> </listOfCompartments> <listOfSpecies> <species id="S1" name="Species 1" compartment="default_compartment" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/> <species id="S2" compartment="default_compartment" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/> </listOfSpecies> <listOfReactions> <reaction id="_J0" reversible="true"> <listOfReactants> <speciesReference species="S1" stoichiometry="1" constant="true"/> </listOfReactants> <listOfProducts> <speciesReference species="S2" stoichiometry="1" constant="true"/> </listOfProducts> </reaction> </listOfReactions> </model> </sbml>
gives me "S1" when it should give me "Species 1"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code:
With the following model:
gives me "S1" when it should give me "Species 1"
The text was updated successfully, but these errors were encountered: