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

proper operator types for specific reaction types

parent 2d090b19
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",!498Resolve "Inhibition reactions not preserved when converting from CellDesigner to SBML"
......@@ -26,13 +26,17 @@ import lcsb.mapviewer.model.map.model.Model;
import lcsb.mapviewer.model.map.reaction.AbstractNode;
import lcsb.mapviewer.model.map.reaction.AndOperator;
import lcsb.mapviewer.model.map.reaction.AssociationOperator;
import lcsb.mapviewer.model.map.reaction.DissociationOperator;
import lcsb.mapviewer.model.map.reaction.Modifier;
import lcsb.mapviewer.model.map.reaction.NodeOperator;
import lcsb.mapviewer.model.map.reaction.Product;
import lcsb.mapviewer.model.map.reaction.Reactant;
import lcsb.mapviewer.model.map.reaction.Reaction;
import lcsb.mapviewer.model.map.reaction.SplitOperator;
import lcsb.mapviewer.model.map.reaction.TruncationOperator;
import lcsb.mapviewer.model.map.reaction.type.DissociationReaction;
import lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction;
import lcsb.mapviewer.model.map.reaction.type.TruncationReaction;
import lcsb.mapviewer.model.map.species.Complex;
import lcsb.mapviewer.model.map.species.Element;
import lcsb.mapviewer.model.map.species.Species;
......@@ -280,9 +284,15 @@ public class ApplySimpleLayoutModelCommand extends ApplyLayoutModelCommand {
}
private void modifyProducts(Reaction reaction, Point2D middle) {
SplitOperator operator = null;
NodeOperator operator = null;
if (reaction.getProducts().size() > 1) {
operator = new SplitOperator();
if (reaction instanceof DissociationReaction) {
operator = new DissociationOperator();
} else if (reaction instanceof TruncationReaction) {
operator = new TruncationOperator();
} else {
operator = new SplitOperator();
}
Point2D productPoint = reaction.getProducts().get(0).getElement().getCenter();
Point2D operatorPoint = getMiddlePoint(middle, productPoint);
operator.setLine(new PolylineData(middle, operatorPoint));
......
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