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 xmlns attribute declares the namespace of the SED-ML document. In the current export it looks like this:
<sedML xmlns="http://sed-ml.org/sed-ml/level1/version2" xmlns:math="http://www.w3.org/1998/Math/MathML" level="1" version="2" >
To work with BioSimulators SED-ML Level 1 Version 3 or higher is required. That means it needs to also define the SBML namespace and look like this:
<sedML xmlns="http://sed-ml.org/sed-ml/level1/version2" xmlns:math="http://www.w3.org/1998/Math/MathML" level="1" version="2" xmlns:sbml="http://www.sbml.org/sbml/level3/version2/core">
More information can be found here:
https://docs.biosimulations.org/concepts/conventions/simulation-experiments/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The xmlns attribute declares the namespace of the SED-ML document. In the current export it looks like this:
<sedML xmlns="http://sed-ml.org/sed-ml/level1/version2" xmlns:math="http://www.w3.org/1998/Math/MathML" level="1" version="2" >
To work with BioSimulators SED-ML Level 1 Version 3 or higher is required. That means it needs to also define the SBML namespace and look like this:
<sedML xmlns="http://sed-ml.org/sed-ml/level1/version2" xmlns:math="http://www.w3.org/1998/Math/MathML" level="1" version="2" xmlns:sbml="http://www.sbml.org/sbml/level3/version2/core">
More information can be found here:
https://docs.biosimulations.org/concepts/conventions/simulation-experiments/
The text was updated successfully, but these errors were encountered: