Skip to content
Snippets Groups Projects

Resolve "Select mode: Export to CellDesigner does not work"

Merged Piotr Gawron requested to merge 329-select-mode-export-to-celldesigner-does-not-work into master
6 files
+ 96
14
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -7,6 +7,9 @@ import org.apache.log4j.Logger;
import lcsb.mapviewer.model.map.modifier.Catalysis;
import lcsb.mapviewer.model.map.modifier.Inhibition;
import lcsb.mapviewer.model.map.modifier.Modulation;
import lcsb.mapviewer.model.map.modifier.PhysicalStimulation;
import lcsb.mapviewer.model.map.modifier.Trigger;
import lcsb.mapviewer.model.map.modifier.UnknownCatalysis;
import lcsb.mapviewer.model.map.modifier.UnknownInhibition;
import lcsb.mapviewer.model.map.reaction.Modifier;
@@ -14,6 +17,9 @@ import lcsb.mapviewer.model.map.reaction.Modifier;
public enum SBOTermModifierType {
CATALYSIS(Catalysis.class, new String[] { "SBO:0000013" }), //
INHIBITION(Inhibition.class, new String[] { "SBO:0000537" }), //
MODULATION(Modulation.class, new String[] { "SBO:0000594" }), //
PHYSICAL_STIMULATION(PhysicalStimulation.class, new String[] { "SBO:0000459" }), //
TRIGGER(Trigger.class, new String[] { "SBO:0000461" }), //
UNKNOWN_CATALYSIS(UnknownCatalysis.class, new String[] { "SBO:0000462" }), //
UNKNOWN_INHIBITION(UnknownInhibition.class, new String[] { "SBO:0000536" }), //
;
Loading