return;
// do reaction creation
IReactionSet reactionSet = super.chemModelRelay.getChemModel().getReactionSet();
if (reactionSet == null) {
reactionSet = new ReactionChain(); //reactionSet = super.chemModelRelay.getChemModel().getBuilder().newInstance(IReactionSet.class);
super.chemModelRelay.getChemModel().setReactionSet(reactionSet);
}
IReaction reaction = moleculeSet.getBuilder().newInstance(IReaction.class);
((ReactionChain) reactionSet).addReaction(reaction, reactionSet.getReactionCount()); //reactionSet.addReaction(reaction);
reaction.setID(ReactionHub.newReactionId(chemModelRelay));