Skip to content
Snippets Groups Projects
Commit 0c7d8b37 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

export of inital amount added

parent 6f779b1d
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!494Conversion rest api scaling
......@@ -28,6 +28,9 @@ public class SbmlSpeciesExporter extends SbmlElementExporter<Species, org.sbml.j
if (element.getCompartment() != null) {
result.setCompartment(compartmentExporter.getSbmlElement(element.getCompartment()));
}
if (element.getInitialAmount() != null) {
result.setInitialAmount(element.getInitialAmount());
}
return result;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment