use of cbit.vcell.model.ReactionStep in project vcell by virtualcell.
the class BioModelEditorModelPanel method initialize.
private void initialize() {
newButton = new JButton("New");
newButton2 = new JButton("New Rule");
newMemButton = new JButton("New Membrane");
deleteButton = new JButton("Delete");
duplicateButton = new JButton("Duplicate");
pathwayButton = new JButton("Pathway Links", new DownArrowIcon());
pathwayButton.setHorizontalTextPosition(SwingConstants.LEFT);
textFieldSearch = new JTextField();
textFieldSearch.putClientProperty("JTextField.variant", "search");
structuresTable = new EditorScrollTable();
reactionsTable = new EditorScrollTable();
speciesTable = new EditorScrollTable();
molecularTypeTable = new EditorScrollTable();
observablesTable = new EditorScrollTable();
structureTableModel = new BioModelEditorStructureTableModel(structuresTable);
reactionTableModel = new BioModelEditorReactionTableModel(reactionsTable);
speciesTableModel = new BioModelEditorSpeciesTableModel(speciesTable);
molecularTypeTableModel = new MolecularTypeTableModel(molecularTypeTable);
observableTableModel = new ObservableTableModel(observablesTable);
structuresTable.setModel(structureTableModel);
reactionsTable.setModel(reactionTableModel);
speciesTable.setModel(speciesTableModel);
molecularTypeTable.setModel(molecularTypeTableModel);
observablesTable.setModel(observableTableModel);
reactionCartoonEditorPanel = new ReactionCartoonEditorPanel();
reactionCartoonEditorPanel.addPropertyChangeListener(eventHandler);
reactionCartoonEditorPanel.getReactionCartoonFull().addPropertyChangeListener(eventHandler);
reactionCartoonEditorPanel.getReactionCartoonMolecule().addPropertyChangeListener(eventHandler);
reactionCartoonEditorPanel.getReactionCartoonRule().addPropertyChangeListener(eventHandler);
// cartoonEditorPanel = new CartoonEditorPanelFixed();
// cartoonEditorPanel.getStructureCartoon().addPropertyChangeListener(eventHandler);
/* button panel */
buttonPanel = new JPanel();
buttonPanel.setLayout(new GridBagLayout());
GridBagConstraints gbc = new GridBagConstraints();
gbc.gridx = 0;
gbc.gridy = 0;
gbc.insets = new Insets(4, 4, 4, 4);
gbc.anchor = GridBagConstraints.LINE_END;
buttonPanel.add(newButton, gbc);
gbc = new GridBagConstraints();
gbc.gridx = 1;
gbc.gridy = 0;
gbc.insets = new Insets(4, 4, 4, 4);
gbc.anchor = GridBagConstraints.LINE_END;
buttonPanel.add(newButton2, gbc);
gbc = new GridBagConstraints();
gbc.gridx = 2;
gbc.gridy = 0;
gbc.insets = new Insets(4, 4, 4, 4);
gbc.anchor = GridBagConstraints.LINE_END;
buttonPanel.add(newMemButton, gbc);
gbc = new GridBagConstraints();
gbc.gridx = 3;
gbc.insets = new Insets(4, 4, 4, 4);
gbc.gridy = 0;
gbc.anchor = GridBagConstraints.LINE_END;
buttonPanel.add(duplicateButton, gbc);
gbc = new GridBagConstraints();
gbc.gridx = 4;
gbc.insets = new Insets(4, 4, 4, 4);
gbc.gridy = 0;
gbc.anchor = GridBagConstraints.LINE_END;
buttonPanel.add(deleteButton, gbc);
gbc = new GridBagConstraints();
gbc.gridx = 5;
gbc.insets = new Insets(4, 4, 4, 4);
gbc.gridy = 0;
gbc.anchor = GridBagConstraints.LINE_END;
buttonPanel.add(pathwayButton, gbc);
gbc = new GridBagConstraints();
gbc.gridx = 6;
gbc.gridy = 0;
gbc.weightx = 0.5;
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.insets = new Insets(4, 4, 4, 4);
buttonPanel.add(Box.createRigidArea(new Dimension(5, 5)), gbc);
gbc = new GridBagConstraints();
gbc.gridx = 7;
gbc.gridy = 0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.insets = new Insets(4, 4, 4, 4);
buttonPanel.add(new JLabel("Search "), gbc);
gbc = new GridBagConstraints();
gbc.gridx = 8;
gbc.gridy = 0;
gbc.weightx = 1.5;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.insets = new Insets(4, 4, 4, 4);
buttonPanel.add(textFieldSearch, gbc);
/* button panel */
tabbedPane = new JTabbedPaneEnhanced();
tabbedPane.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
modelPanelTabs[ModelPanelTabID.reaction_diagram.ordinal()] = new ModelPanelTab(ModelPanelTabID.reaction_diagram, reactionCartoonEditorPanel, VCellIcons.diagramIcon);
// modelPanelTabs[ModelPanelTabID.structure_diagram.ordinal()] = new ModelPanelTab(ModelPanelTabID.structure_diagram, cartoonEditorPanel, VCellIcons.structureIcon);
modelPanelTabs[ModelPanelTabID.reaction_table.ordinal()] = new ModelPanelTab(ModelPanelTabID.reaction_table, reactionsTable.getEnclosingScrollPane(), VCellIcons.tableIcon);
modelPanelTabs[ModelPanelTabID.structure_table.ordinal()] = new ModelPanelTab(ModelPanelTabID.structure_table, structuresTable.getEnclosingScrollPane(), VCellIcons.tableIcon);
modelPanelTabs[ModelPanelTabID.species_table.ordinal()] = new ModelPanelTab(ModelPanelTabID.species_table, speciesTable.getEnclosingScrollPane(), VCellIcons.tableIcon);
modelPanelTabs[ModelPanelTabID.species_definitions_table.ordinal()] = new ModelPanelTab(ModelPanelTabID.species_definitions_table, molecularTypeTable.getEnclosingScrollPane(), VCellIcons.tableIcon);
modelPanelTabs[ModelPanelTabID.observables_table.ordinal()] = new ModelPanelTab(ModelPanelTabID.observables_table, observablesTable.getEnclosingScrollPane(), VCellIcons.tableIcon);
tabbedPane.addChangeListener(eventHandler);
tabbedPane.addMouseListener(eventHandler);
for (ModelPanelTab tab : modelPanelTabs) {
tab.getComponent().setBorder(GuiConstants.TAB_PANEL_BORDER);
tabbedPane.addTab(tab.getName(), tab.getIcon(), tab.getComponent());
}
// tabbedPane.addChangeListener(changeListener);
setLayout(new BorderLayout());
add(tabbedPane, BorderLayout.CENTER);
add(buttonPanel, BorderLayout.SOUTH);
newButton.addActionListener(eventHandler);
newButton2.addActionListener(eventHandler);
newMemButton.addActionListener(eventHandler);
duplicateButton.addActionListener(eventHandler);
duplicateButton.setEnabled(false);
deleteButton.addActionListener(eventHandler);
deleteButton.setEnabled(false);
pathwayButton.addActionListener(eventHandler);
pathwayButton.setEnabled(false);
textFieldSearch.addActionListener(eventHandler);
textFieldSearch.getDocument().addDocumentListener(eventHandler);
structuresTable.getSelectionModel().addListSelectionListener(eventHandler);
reactionsTable.getSelectionModel().addListSelectionListener(eventHandler);
speciesTable.getSelectionModel().addListSelectionListener(eventHandler);
molecularTypeTable.getSelectionModel().addListSelectionListener(eventHandler);
observablesTable.getSelectionModel().addListSelectionListener(eventHandler);
DefaultScrollTableCellRenderer tableRenderer = new DefaultScrollTableCellRenderer() {
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if (value instanceof Structure) {
setText(((Structure) value).getName());
} else if (value instanceof Kinetics) {
setText(((Kinetics) value).getKineticsDescription().getDescription());
} else if (value instanceof RbmKineticLaw) {
setText(((RbmKineticLaw) value).getRateLawType().name());
}
return this;
}
};
RbmTableRenderer rbmTableRenderer = new RbmTableRenderer();
structuresTable.setDefaultRenderer(Structure.class, tableRenderer);
speciesTable.setDefaultRenderer(Structure.class, tableRenderer);
reactionsTable.setDefaultRenderer(Structure.class, tableRenderer);
reactionsTable.setDefaultRenderer(Kinetics.class, tableRenderer);
reactionsTable.setDefaultRenderer(RbmKineticLaw.class, tableRenderer);
reactionsTable.setDefaultRenderer(ModelProcessDynamics.class, tableRenderer);
// Link to biopax object Table Cell Renderer
DefaultScrollTableCellRenderer linkTableCellRenderer = new DefaultScrollTableCellRenderer() {
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
BioModelEntityObject bioModelEntityObject = null;
if (table.getModel() instanceof VCellSortTableModel<?>) {
if (table.getModel() == reactionTableModel && reactionTableModel.getValueAt(row) instanceof BioModelEntityObject) {
bioModelEntityObject = (BioModelEntityObject) reactionTableModel.getValueAt(row);
} else if (table.getModel() == speciesTableModel) {
bioModelEntityObject = speciesTableModel.getValueAt(row);
} else if (table.getModel() == molecularTypeTableModel) {
bioModelEntityObject = molecularTypeTableModel.getValueAt(row);
}
if (bioModelEntityObject != null) {
Set<RelationshipObject> relationshipSet = bioModel.getRelationshipModel().getRelationshipObjects(bioModelEntityObject);
if (relationshipSet.size() > 0) {
StringBuilder tooltip = new StringBuilder("<html>Links to Pathway objects:<br>");
for (RelationshipObject ro : relationshipSet) {
tooltip.append("<li>" + ro.getBioPaxObject() + "</li>");
}
if (!isSelected) {
setForeground(Color.blue);
}
String finalName = null;
BioPaxObject bioPaxObject = relationshipSet.iterator().next().getBioPaxObject();
if (bioPaxObject instanceof EntityImpl && ((EntityImpl) bioPaxObject).getName() != null && ((EntityImpl) bioPaxObject).getName().size() > 0) {
finalName = ((EntityImpl) bioPaxObject).getName().get(0);
} else if (bioPaxObject instanceof Conversion) {
Conversion mp = (Conversion) bioPaxObject;
finalName = "[" + bioPaxObject.getIDShort() + "]";
} else {
finalName = bioModelEntityObject.getName();
}
final int LIMIT = 40;
final String DOTS = "...";
if (finalName != null && finalName.length() > LIMIT) {
finalName = finalName.substring(0, LIMIT - DOTS.length() - 1) + DOTS;
}
setText("<html><u>" + finalName + "</u></html>");
setToolTipText(tooltip.toString());
}
}
}
return this;
}
};
// Annotations icon column renderer
DefaultScrollTableCellRenderer annotationTableCellRenderer = new DefaultScrollTableCellRenderer() {
final Color lightBlueBackground = new Color(214, 234, 248);
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
Identifiable entity = null;
if (table.getModel() instanceof VCellSortTableModel<?>) {
if (table.getModel() == reactionTableModel) {
entity = (BioModelEntityObject) reactionTableModel.getValueAt(row);
} else if (table.getModel() == speciesTableModel) {
entity = speciesTableModel.getValueAt(row);
} else if (table.getModel() == molecularTypeTableModel) {
entity = molecularTypeTableModel.getValueAt(row);
} else if (table.getModel() == observableTableModel) {
entity = observableTableModel.getValueAt(row);
} else if (table.getModel() == structureTableModel) {
entity = structureTableModel.getValueAt(row);
}
if (entity != null) {
if (isSelected) {
setBackground(lightBlueBackground);
}
Identifiable identifiable = AnnotationsPanel.getIdentifiable(entity);
String freeText = bioModel.getVCMetaData().getFreeTextAnnotation(identifiable);
MiriamManager miriamManager = bioModel.getVCMetaData().getMiriamManager();
TreeMap<Identifiable, Map<MiriamRefGroup, MIRIAMQualifier>> miriamDescrHeir = miriamManager.getMiriamTreeMap();
Map<MiriamRefGroup, MIRIAMQualifier> refGroupMap = miriamDescrHeir.get(identifiable);
Icon icon1 = VCellIcons.issueGoodIcon;
Icon icon2 = VCellIcons.issueGoodIcon;
if (freeText != null && !freeText.isEmpty()) {
icon2 = VCellIcons.noteIcon;
// icon = VCellIcons.bookmarkIcon;
// icon = VCellIcons.addIcon(icon, VCellIcons.linkIcon);
// icon = VCellIcons.addIcon(icon, VCellIcons.certificateIcon);
// icon = VCellIcons.addIcon(icon, VCellIcons.noteIcon);
}
if (refGroupMap != null && !refGroupMap.isEmpty()) {
icon1 = VCellIcons.linkIcon;
}
Icon icon = VCellIcons.addIcon(icon1, icon2);
setIcon(icon);
}
}
return this;
}
};
DefaultScrollTableCellRenderer rbmReactionExpressionCellRenderer = new DefaultScrollTableCellRenderer() {
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if (table.getModel() instanceof VCellSortTableModel<?>) {
Object selectedObject = null;
if (table.getModel() == reactionTableModel) {
selectedObject = reactionTableModel.getValueAt(row);
}
if (selectedObject != null) {
if (selectedObject instanceof ReactionRule && value instanceof ModelProcessEquation) {
String text = "<html>";
text += "Reaction Rule";
text += "</html>";
setText(text);
} else {
// plain reaction, check if reactants have species pattern
ReactionStep rs = (ReactionStep) selectedObject;
String text = "<html>";
for (int i = 0; i < rs.getNumReactants(); i++) {
Reactant p = rs.getReactant(i);
if (p.getSpeciesContext().hasSpeciesPattern()) {
text += p.getStoichiometry() > 1 ? (p.getStoichiometry() + "") : "";
// text += "<b>" + p.getName() + "</b>";
text += p.getName();
} else {
text += p.getStoichiometry() > 1 ? (p.getStoichiometry() + "") : "";
text += p.getName();
}
if (i < rs.getNumReactants() - 1) {
text += " + ";
}
}
text += " -> ";
for (int i = 0; i < rs.getNumProducts(); i++) {
Product p = rs.getProduct(i);
if (p.getSpeciesContext().hasSpeciesPattern()) {
text += p.getStoichiometry() > 1 ? (p.getStoichiometry() + "") : "";
// text += "<b>" + p.getName() + "</b>";
text += p.getName();
} else {
text += p.getStoichiometry() > 1 ? (p.getStoichiometry() + "") : "";
text += p.getName();
}
if (i < rs.getNumProducts() - 1) {
text += " + ";
}
}
text += "</html>";
setText(text);
}
}
}
return this;
}
};
DefaultScrollTableCellRenderer rbmReactionDefinitionCellRenderer = new DefaultScrollTableCellRenderer() {
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if (table.getModel() instanceof VCellSortTableModel<?>) {
Object selectedObject = null;
if (table.getModel() == reactionTableModel) {
selectedObject = reactionTableModel.getValueAt(row);
}
if (selectedObject != null) {
if (selectedObject instanceof ReactionRule && value instanceof ModelProcessEquation) {
ReactionRule rr = (ReactionRule) selectedObject;
String text = "<html>";
for (int i = 0; i < rr.getReactantPatterns().size(); i++) {
ReactantPattern rp = rr.getReactantPattern(i);
if (rp.getStructure() != null && !rp.getSpeciesPattern().getMolecularTypePatterns().isEmpty()) {
text += "@" + rp.getStructure().getName() + ":";
}
text += RbmUtils.toBnglString(rp.getSpeciesPattern(), null, CompartmentMode.hide, 0);
// text += RbmTableRenderer.toHtml(rp.getSpeciesPattern(), isSelected);
if (i < rr.getReactantPatterns().size() - 1) {
text += "+";
}
}
if (rr.isReversible()) {
// <-> <->
text += " <-> ";
} else {
text += " -> ";
}
for (int i = 0; i < rr.getProductPatterns().size(); i++) {
ProductPattern pp = rr.getProductPattern(i);
if (pp.getStructure() != null && !pp.getSpeciesPattern().getMolecularTypePatterns().isEmpty()) {
text += "@" + pp.getStructure().getName() + ":";
}
text += RbmUtils.toBnglString(pp.getSpeciesPattern(), null, CompartmentMode.hide, 0);
if (i < rr.getProductPatterns().size() - 1) {
text += "+";
}
}
text += "</html>";
setText(text);
} else {
// plain reaction, check if reactants have species pattern
ReactionStep rs = (ReactionStep) selectedObject;
String text = "<html>";
for (int i = 0; i < rs.getNumReactants(); i++) {
Reactant p = rs.getReactant(i);
if (p.getSpeciesContext().hasSpeciesPattern()) {
text += p.getStoichiometry() > 1 ? (p.getStoichiometry() + "") : "";
text += p.getName();
} else {
text += p.getStoichiometry() > 1 ? (p.getStoichiometry() + "") : "";
text += p.getName();
}
if (i < rs.getNumReactants() - 1) {
text += " + ";
}
}
if (rs.isReversible()) {
// <-> <->
text += " <-> ";
} else {
text += " -> ";
}
for (int i = 0; i < rs.getNumProducts(); i++) {
Product p = rs.getProduct(i);
if (p.getSpeciesContext().hasSpeciesPattern()) {
text += p.getStoichiometry() > 1 ? (p.getStoichiometry() + "") : "";
text += p.getName();
} else {
text += p.getStoichiometry() > 1 ? (p.getStoichiometry() + "") : "";
text += p.getName();
}
if (i < rs.getNumProducts() - 1) {
text += " + ";
}
}
text += "</html>";
setText(text);
}
}
}
return this;
}
};
DefaultScrollTableCellRenderer rbmObservablePatternCellRenderer = new DefaultScrollTableCellRenderer() {
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if (table.getModel() instanceof VCellSortTableModel<?>) {
Object selectedObject = null;
if (table.getModel() == observableTableModel) {
selectedObject = observableTableModel.getValueAt(row);
}
if (selectedObject != null) {
if (selectedObject instanceof RbmObservable && value instanceof String) {
RbmObservable o = (RbmObservable) selectedObject;
String text = "<html>";
for (int i = 0; i < o.getSpeciesPatternList().size(); i++) {
SpeciesPattern sp = o.getSpeciesPattern(i);
text += RbmTableRenderer.toHtml(sp, isSelected);
if (i < o.getSpeciesPatternList().size() - 1) {
text += " ";
}
}
text = RbmUtils.appendSequence(text, o);
text += "</html>";
setText(text);
}
}
}
return this;
}
};
DefaultScrollTableCellRenderer rbmSpeciesNameCellRenderer = new DefaultScrollTableCellRenderer() {
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if (table.getModel() instanceof VCellSortTableModel<?>) {
Object selectedObject = null;
if (table.getModel() == speciesTableModel) {
selectedObject = speciesTableModel.getValueAt(row);
}
if (selectedObject != null) {
if (selectedObject instanceof SpeciesContext) {
SpeciesContext sc = (SpeciesContext) selectedObject;
String text = "<html>";
if (sc.hasSpeciesPattern()) {
text += "<b>" + sc.getName() + "</b>";
} else {
text += sc.getName();
}
text += "</html>";
setText(text);
}
}
}
return this;
}
};
DefaultScrollTableCellRenderer reactionNameCellRenderer = new DefaultScrollTableCellRenderer() {
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if (table.getModel() instanceof VCellSortTableModel<?>) {
Object selectedObject = null;
if (table.getModel() == reactionTableModel) {
selectedObject = reactionTableModel.getValueAt(row);
}
setToolTipText(null);
if (selectedObject != null) {
if (selectedObject instanceof ReactionStep) {
ReactionStep rs = (ReactionStep) selectedObject;
String sbmlName = rs.getSbmlName();
if (sbmlName != null && !sbmlName.isEmpty()) {
String text = "<html>";
text += sbmlName;
text += "</html>";
setToolTipText(text);
} else {
setToolTipText(rs.getDisplayName());
}
} else if (selectedObject instanceof ReactionRule) {
ReactionRule rr = (ReactionRule) selectedObject;
setToolTipText(rr.getDisplayName());
}
}
}
return this;
}
};
//
// this renderer only paints the molecular type small shape in the MolecularType Table
//
DefaultScrollTableCellRenderer rbmMolecularTypeShapeDepictionCellRenderer = new DefaultScrollTableCellRenderer() {
MolecularTypeSmallShape stls = null;
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if (table.getModel() instanceof VCellSortTableModel<?>) {
Object selectedObject = null;
if (table.getModel() == molecularTypeTableModel) {
selectedObject = molecularTypeTableModel.getValueAt(row);
}
if (selectedObject != null) {
if (selectedObject instanceof MolecularType) {
MolecularType mt = (MolecularType) selectedObject;
Graphics cellContext = table.getGraphics();
if (mt != null) {
stls = new MolecularTypeSmallShape(4, 3, mt, null, cellContext, mt, null, issueManager);
}
}
} else {
stls = null;
}
}
return this;
}
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
if (stls != null) {
stls.paintSelf(g);
}
}
};
// painting of species patterns small shapes inside the species context table
DefaultScrollTableCellRenderer rbmSpeciesShapeDepictionCellRenderer = new DefaultScrollTableCellRenderer() {
SpeciesPatternSmallShape spss = null;
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if (table.getModel() instanceof VCellSortTableModel<?>) {
Object selectedObject = null;
if (table.getModel() == speciesTableModel) {
selectedObject = speciesTableModel.getValueAt(row);
}
if (selectedObject != null) {
if (selectedObject instanceof SpeciesContext) {
SpeciesContext sc = (SpeciesContext) selectedObject;
// sp may be null for "plain" species contexts
SpeciesPattern sp = sc.getSpeciesPattern();
Graphics panelContext = table.getGraphics();
spss = new SpeciesPatternSmallShape(4, 2, sp, panelContext, sc, isSelected, issueManager);
}
} else {
spss = null;
}
}
setText("");
return this;
}
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
if (spss != null) {
spss.paintSelf(g);
}
}
};
// ---------------------------------------------------------------------------------------------------------------------------------
DefaultScrollTableCellRenderer rbmReactionShapeDepictionCellRenderer = new DefaultScrollTableCellRenderer() {
List<SpeciesPatternSmallShape> spssList = new ArrayList<SpeciesPatternSmallShape>();
SpeciesPatternSmallShape spss = null;
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if (table.getModel() instanceof VCellSortTableModel<?>) {
Object selectedObject = null;
if (table.getModel() == reactionTableModel) {
selectedObject = reactionTableModel.getValueAt(row);
}
if (selectedObject != null) {
if (selectedObject instanceof ReactionRule) {
ReactionRule rr = (ReactionRule) selectedObject;
Graphics panelContext = table.getGraphics();
spssList.clear();
List<ReactantPattern> rpList = rr.getReactantPatterns();
int xPos = 4;
for (int i = 0; i < rpList.size(); i++) {
SpeciesPattern sp = rr.getReactantPattern(i).getSpeciesPattern();
spss = new SpeciesPatternSmallShape(xPos, 2, sp, null, panelContext, rr, isSelected, issueManager);
if (i < rpList.size() - 1) {
spss.addEndText("+");
} else {
if (rr.isReversible()) {
spss.addEndText("<->");
xPos += 7;
} else {
spss.addEndText("->");
}
}
xPos += spss.getWidth() + 15;
spssList.add(spss);
}
List<ProductPattern> ppList = rr.getProductPatterns();
xPos += 7;
for (int i = 0; i < ppList.size(); i++) {
SpeciesPattern sp = rr.getProductPattern(i).getSpeciesPattern();
spss = new SpeciesPatternSmallShape(xPos, 2, sp, null, panelContext, rr, isSelected, issueManager);
if (i < ppList.size() - 1) {
spss.addEndText("+");
}
xPos += spss.getWidth() + 15;
spssList.add(spss);
}
} else {
ReactionStep rs = (ReactionStep) selectedObject;
Graphics panelContext = table.getGraphics();
spssList.clear();
int xPos = 4;
int extraSpace = 0;
for (int i = 0; i < rs.getNumReactants(); i++) {
SpeciesPattern sp = rs.getReactant(i).getSpeciesContext().getSpeciesPattern();
spss = new SpeciesPatternSmallShape(xPos, 2, sp, panelContext, rs, isSelected, issueManager);
if (i < rs.getNumReactants() - 1) {
spss.addEndText("+");
} else {
if (rs.isReversible()) {
spss.addEndText("<->");
extraSpace += 7;
} else {
spss.addEndText("->");
}
}
int offset = sp == null ? 17 : 15;
offset += extraSpace;
int w = spss.getWidth();
xPos += w + offset;
spssList.add(spss);
}
xPos += 8;
for (int i = 0; i < rs.getNumProducts(); i++) {
SpeciesPattern sp = rs.getProduct(i).getSpeciesContext().getSpeciesPattern();
if (i == 0 && rs.getNumReactants() == 0) {
xPos += 14;
}
spss = new SpeciesPatternSmallShape(xPos, 2, sp, panelContext, rs, isSelected, issueManager);
if (i == 0 && rs.getNumReactants() == 0) {
spss.addStartText("->");
}
if (i < rs.getNumProducts() - 1) {
spss.addEndText("+");
}
int offset = sp == null ? 17 : 15;
int w = spss.getWidth();
xPos += w + offset;
spssList.add(spss);
}
}
} else {
spssList.clear();
}
}
setText("");
return this;
}
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
for (SpeciesPatternSmallShape spss : spssList) {
if (spss == null) {
continue;
}
spss.paintSelf(g);
}
}
};
// -------------------------------------------------------------------------------------------------------------------------------
DefaultScrollTableCellRenderer rbmObservableShapeDepictionCellRenderer = new DefaultScrollTableCellRenderer() {
List<SpeciesPatternSmallShape> spssList = new ArrayList<SpeciesPatternSmallShape>();
SpeciesPatternSmallShape spss = null;
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if (table.getModel() instanceof VCellSortTableModel<?>) {
Object selectedObject = null;
if (table.getModel() == observableTableModel) {
selectedObject = observableTableModel.getValueAt(row);
}
if (selectedObject != null) {
if (selectedObject instanceof RbmObservable) {
RbmObservable observable = (RbmObservable) selectedObject;
Graphics panelContext = table.getGraphics();
int xPos = 4;
spssList.clear();
for (int i = 0; i < observable.getSpeciesPatternList().size(); i++) {
SpeciesPattern sp = observable.getSpeciesPatternList().get(i);
spss = new SpeciesPatternSmallShape(xPos, 2, sp, panelContext, observable, isSelected, issueManager);
xPos += spss.getWidth() + 6;
spssList.add(spss);
}
}
} else {
spssList.clear();
}
}
setText("");
return this;
}
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
for (SpeciesPatternSmallShape spss : spssList) {
if (spss == null) {
continue;
}
spss.paintSelf(g);
}
}
};
// TODO: here are the renderers associated with the columns
reactionsTable.getColumnModel().getColumn(BioModelEditorReactionTableModel.COLUMN_NAME).setCellRenderer(reactionNameCellRenderer);
reactionsTable.getColumnModel().getColumn(BioModelEditorReactionTableModel.COLUMN_LINK).setCellRenderer(linkTableCellRenderer);
reactionsTable.getColumnModel().getColumn(BioModelEditorReactionTableModel.COLUMN_EQUATION).setCellRenderer(rbmReactionExpressionCellRenderer);
reactionsTable.getColumnModel().getColumn(BioModelEditorReactionTableModel.COLUMN_DEFINITION).setCellRenderer(rbmReactionDefinitionCellRenderer);
reactionsTable.getColumnModel().getColumn(BioModelEditorReactionTableModel.COLUMN_NOTES).setCellRenderer(annotationTableCellRenderer);
speciesTable.getColumnModel().getColumn(BioModelEditorSpeciesTableModel.COLUMN_NAME).setCellRenderer(rbmSpeciesNameCellRenderer);
speciesTable.getColumnModel().getColumn(BioModelEditorSpeciesTableModel.COLUMN_LINK).setCellRenderer(linkTableCellRenderer);
speciesTable.getColumnModel().getColumn(BioModelEditorSpeciesTableModel.COLUMN_NOTES).setCellRenderer(annotationTableCellRenderer);
molecularTypeTable.getColumnModel().getColumn(MolecularTypeTableModel.Column.link.ordinal()).setCellRenderer(linkTableCellRenderer);
molecularTypeTable.getColumnModel().getColumn(MolecularTypeTableModel.Column.notes.ordinal()).setCellRenderer(annotationTableCellRenderer);
observablesTable.getColumnModel().getColumn(ObservableTableModel.Column.species_pattern.ordinal()).setCellRenderer(rbmObservablePatternCellRenderer);
observablesTable.getColumnModel().getColumn(ObservableTableModel.Column.structure.ordinal()).setCellRenderer(tableRenderer);
observablesTable.getColumnModel().getColumn(ObservableTableModel.Column.notes.ordinal()).setCellRenderer(annotationTableCellRenderer);
structuresTable.getColumnModel().getColumn(BioModelEditorStructureTableModel.COLUMN_NOTES).setCellRenderer(annotationTableCellRenderer);
// fixed width columns
final int notesWidth = 65;
molecularTypeTable.getColumnModel().getColumn(MolecularTypeTableModel.Column.depiction.ordinal()).setMaxWidth(180);
molecularTypeTable.getColumnModel().getColumn(MolecularTypeTableModel.Column.notes.ordinal()).setPreferredWidth(notesWidth);
molecularTypeTable.getColumnModel().getColumn(MolecularTypeTableModel.Column.notes.ordinal()).setMaxWidth(notesWidth);
speciesTable.getColumnModel().getColumn(BioModelEditorSpeciesTableModel.COLUMN_NOTES).setPreferredWidth(notesWidth);
speciesTable.getColumnModel().getColumn(BioModelEditorSpeciesTableModel.COLUMN_NOTES).setMaxWidth(notesWidth);
observablesTable.getColumnModel().getColumn(ObservableTableModel.Column.notes.ordinal()).setPreferredWidth(notesWidth);
observablesTable.getColumnModel().getColumn(ObservableTableModel.Column.notes.ordinal()).setMaxWidth(notesWidth);
reactionsTable.getColumnModel().getColumn(BioModelEditorReactionTableModel.COLUMN_DEPICTION).setPreferredWidth(180);
reactionsTable.getColumnModel().getColumn(BioModelEditorReactionTableModel.COLUMN_NOTES).setPreferredWidth(notesWidth);
reactionsTable.getColumnModel().getColumn(BioModelEditorReactionTableModel.COLUMN_NOTES).setMaxWidth(notesWidth);
structuresTable.getColumnModel().getColumn(BioModelEditorStructureTableModel.COLUMN_NOTES).setPreferredWidth(notesWidth);
structuresTable.getColumnModel().getColumn(BioModelEditorStructureTableModel.COLUMN_NOTES).setMaxWidth(notesWidth);
// all "depictions" have their own renderer
molecularTypeTable.getColumnModel().getColumn(MolecularTypeTableModel.Column.depiction.ordinal()).setCellRenderer(rbmMolecularTypeShapeDepictionCellRenderer);
speciesTable.getColumnModel().getColumn(BioModelEditorSpeciesTableModel.COLUMN_DEPICTION).setCellRenderer(rbmSpeciesShapeDepictionCellRenderer);
speciesTable.getColumnModel().getColumn(BioModelEditorSpeciesTableModel.COLUMN_DEFINITION).setCellRenderer(rbmTableRenderer);
observablesTable.getColumnModel().getColumn(ObservableTableModel.Column.depiction.ordinal()).setCellRenderer(rbmObservableShapeDepictionCellRenderer);
reactionsTable.getColumnModel().getColumn(BioModelEditorReactionTableModel.COLUMN_DEPICTION).setCellRenderer(rbmReactionShapeDepictionCellRenderer);
observablesTable.getColumnModel().getColumn(ObservableTableModel.Column.type.ordinal()).setCellEditor(observableTableModel.getObservableTypeComboBoxEditor());
observableTableModel.updateObservableTypeComboBox();
reactionsTable.addMouseListener(eventHandler);
reactionsTable.addKeyListener(eventHandler);
speciesTable.addMouseListener(eventHandler);
speciesTable.addKeyListener(eventHandler);
molecularTypeTable.addMouseListener(eventHandler);
molecularTypeTable.addKeyListener(eventHandler);
observablesTable.addMouseListener(eventHandler);
observablesTable.addKeyListener(eventHandler);
structuresTable.addMouseListener(eventHandler);
structuresTable.addKeyListener(eventHandler);
}
use of cbit.vcell.model.ReactionStep in project vcell by virtualcell.
the class BioModelEditorModelPanel method addNewReaction.
private void addNewReaction() {
if (reactionEditorPanel == null) {
reactionEditorPanel = new ReactionEditorPanel();
}
Model model = getModel();
reactionEditorPanel.setModel(model);
while (true) {
int confirm = DialogUtils.showComponentOKCancelDialog(this, reactionEditorPanel, "New Reaction");
if (confirm == javax.swing.JOptionPane.OK_OPTION) {
Structure reactionStructure = reactionEditorPanel.getStructure();
String reactionName = reactionEditorPanel.getReactionName();
String equationString = reactionEditorPanel.getEquationString();
try {
if (reactionName == null || reactionName.trim().length() == 0 || equationString == null || equationString.trim().length() == 0) {
throw new RuntimeException("Reaction name or equation cannot be empty.");
}
if (getModel().getReactionStep(reactionName) != null) {
throw new RuntimeException("Reaction '" + reactionName + "' already exists.");
}
ReactionStep simpleReaction = new SimpleReaction(model, reactionStructure, "dummy", true);
ReactionParticipant[] rpArray = ModelProcessEquation.parseReaction(simpleReaction, getModel(), equationString);
// StructureTopology structTopology = getModel().getStructureTopology();
// for (ReactionParticipant reactionParticipant : rpArray) {
// if (reactionParticipant.getStructure() == reactionStructure) {
// continue;
// }
// if (reactionStructure instanceof Feature) {
// throw new RuntimeException("Species '" + reactionParticipant.getSpeciesContext().getName() + "' must be in the same volume compartment as reaction.");
// } else if (reactionStructure instanceof Membrane) {
// if (structTopology.getInsideFeature((Membrane)reactionStructure) != reactionParticipant.getStructure()
// && (structTopology.getOutsideFeature((Membrane)reactionStructure)) != reactionParticipant.getStructure()) {
// throw new RuntimeException("Species '" + reactionParticipant.getSpeciesContext().getName() + "' must be adjacent to " +
// "or within reaction's structure '" + reactionStructure.getName() + "'.");
// }
// }
// }
simpleReaction = getModel().createSimpleReaction(reactionStructure);
for (ReactionParticipant rp : rpArray) {
SpeciesContext speciesContext = rp.getSpeciesContext();
if (bioModel.getModel().getSpeciesContext(speciesContext.getName()) == null) {
bioModel.getModel().addSpecies(speciesContext.getSpecies());
bioModel.getModel().addSpeciesContext(speciesContext);
}
}
simpleReaction.setReactionParticipants(rpArray);
simpleReaction.setName(reactionName);
setSelectedObjects(new Object[] { simpleReaction });
break;
} catch (Exception e) {
e.printStackTrace();
DialogUtils.showErrorDialog(this, e.getMessage());
}
} else {
break;
}
}
}
use of cbit.vcell.model.ReactionStep in project vcell by virtualcell.
the class BioModelEditorReactionTableModel method getComparator.
@Override
public Comparator<ModelProcess> getComparator(final int col, final boolean ascending) {
return new Comparator<ModelProcess>() {
public int compare(ModelProcess o1, ModelProcess o2) {
int scale = ascending ? 1 : -1;
switch(col) {
case COLUMN_NAME:
// TODO: find a good "natural order" sorting algorithm
return // normal ASCII sort
scale * o1.getName().compareTo(o2.getName());
case COLUMN_EQUATION:
ModelProcessEquation re1 = new ModelProcessEquation(o1, bioModel.getModel());
ModelProcessEquation re2 = new ModelProcessEquation(o2, bioModel.getModel());
if (o1 instanceof ReactionStep && o2 instanceof ReactionRule) {
return scale;
} else if (o1 instanceof ReactionRule && o2 instanceof ReactionStep) {
return -scale;
}
// this field simply says "Reaction Rule" for all rules
return scale * re1.toString().compareTo(re2.toString());
case COLUMN_STRUCTURE:
return scale * o1.getStructure().getName().compareTo(o2.getStructure().getName());
case COLUMN_DEPICTION:
if (o1 instanceof ReactionStep && o2 instanceof ReactionRule) {
return scale;
} else if (o1 instanceof ReactionRule && o2 instanceof ReactionStep) {
return -scale;
}
return scale * o1.getNumParticipants().compareTo(o2.getNumParticipants());
case COLUMN_KINETICS:
return scale * o1.getDynamics().toString().compareTo(o2.getDynamics().toString());
case COLUMN_DEFINITION:
ModelProcessEquation mpe1 = new ModelProcessEquation(o1, bioModel.getModel());
ModelProcessEquation mpe2 = new ModelProcessEquation(o2, bioModel.getModel());
if (o1 instanceof ReactionStep && o2 instanceof ReactionRule) {
return scale;
} else if (o1 instanceof ReactionRule && o2 instanceof ReactionStep) {
return -scale;
}
// for rules, we compare just the equation strings, without the "@Compartment:" prefix
return scale * mpe1.toString().compareToIgnoreCase(mpe2.toString());
default:
return 0;
}
}
};
}
use of cbit.vcell.model.ReactionStep in project vcell by virtualcell.
the class IssuePanel method invokeHyperlink.
private void invokeHyperlink(Issue issue) {
if (selectionManager != null) {
// followHyperlink is no-op if selectionManger null, so no point in proceeding if it is
IssueContext issueContext = issue.getIssueContext();
IssueSource object = issue.getSource();
if (object instanceof DecoratedIssueSource) {
DecoratedIssueSource dis = (DecoratedIssueSource) object;
dis.activateView(selectionManager);
} else if (object instanceof Parameter) {
followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.BIOMODEL_PARAMETERS_NODE, ActiveViewID.parameters_functions), new Object[] { object });
} else if (object instanceof StructureMapping) {
StructureMapping structureMapping = (StructureMapping) object;
StructureMappingNameScope structureMappingNameScope = (StructureMappingNameScope) structureMapping.getNameScope();
SimulationContext simulationContext = ((SimulationContextNameScope) (structureMappingNameScope.getParent())).getSimulationContext();
followHyperlink(new ActiveView(simulationContext, DocumentEditorTreeFolderClass.GEOMETRY_NODE, ActiveViewID.structure_mapping), new Object[] { object });
} else if (object instanceof SpatialObject) {
SpatialObject spatialObject = (SpatialObject) object;
SimulationContext simulationContext = spatialObject.getSimulationContext();
followHyperlink(new ActiveView(simulationContext, DocumentEditorTreeFolderClass.GEOMETRY_NODE, ActiveViewID.spatial_objects), new Object[] { object });
} else if (object instanceof SpatialProcess) {
SpatialProcess spatialProcess = (SpatialProcess) object;
SimulationContext simulationContext = spatialProcess.getSimulationContext();
followHyperlink(new ActiveView(simulationContext, DocumentEditorTreeFolderClass.GEOMETRY_NODE, ActiveViewID.spatial_processes), new Object[] { object });
} else if (object instanceof GeometryContext.UnmappedGeometryClass) {
UnmappedGeometryClass unmappedGeometryClass = (UnmappedGeometryClass) object;
SimulationContext simulationContext = unmappedGeometryClass.getSimulationContext();
followHyperlink(new ActiveView(simulationContext, DocumentEditorTreeFolderClass.GEOMETRY_NODE, ActiveViewID.structure_mapping), new Object[] { object });
} else if (object instanceof MicroscopeMeasurement) {
SimulationContext simulationContext = ((MicroscopeMeasurement) object).getSimulationContext();
followHyperlink(new ActiveView(simulationContext, DocumentEditorTreeFolderClass.PROTOCOLS_NODE, ActiveViewID.microscope_measuremments), new Object[] { object });
} else if (object instanceof BioEvent) {
BioEvent be = (BioEvent) object;
SimulationContext simulationContext = be.getSimulationContext();
followHyperlink(new ActiveView(simulationContext, DocumentEditorTreeFolderClass.PROTOCOLS_NODE, ActiveViewID.events), new Object[] { object });
} else if (object instanceof OutputFunctionIssueSource) {
SimulationOwner simulationOwner = ((OutputFunctionIssueSource) object).getOutputFunctionContext().getSimulationOwner();
if (simulationOwner instanceof SimulationContext) {
SimulationContext simulationContext = (SimulationContext) simulationOwner;
followHyperlink(new ActiveView(simulationContext, DocumentEditorTreeFolderClass.SIMULATIONS_NODE, ActiveViewID.output_functions), new Object[] { ((OutputFunctionIssueSource) object).getAnnotatedFunction() });
} else if (simulationOwner instanceof MathModel) {
followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.MATH_OUTPUT_FUNCTIONS_NODE, ActiveViewID.math_output_functions), new Object[] { ((OutputFunctionIssueSource) object).getAnnotatedFunction() });
}
} else if (object instanceof Simulation) {
Simulation simulation = (Simulation) object;
SimulationOwner simulationOwner = simulation.getSimulationOwner();
if (simulationOwner instanceof SimulationContext) {
SimulationContext simulationContext = (SimulationContext) simulationOwner;
followHyperlink(new ActiveView(simulationContext, DocumentEditorTreeFolderClass.SIMULATIONS_NODE, ActiveViewID.simulations), new Object[] { simulation });
} else if (simulationOwner instanceof MathModel) {
followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.MATH_SIMULATIONS_NODE, ActiveViewID.math_simulations), new Object[] { simulation });
}
} else if (object instanceof AssignmentRule) {
AssignmentRule ar = (AssignmentRule) object;
SimulationContext sc = ar.getSimulationContext();
followHyperlink(new ActiveView(sc, DocumentEditorTreeFolderClass.PROTOCOLS_NODE, ActiveViewID.assignmentRules), new Object[] { ar });
} else if (object instanceof RateRule) {
RateRule rr = (RateRule) object;
SimulationContext sc = rr.getSimulationContext();
followHyperlink(new ActiveView(sc, DocumentEditorTreeFolderClass.PROTOCOLS_NODE, ActiveViewID.rateRules), new Object[] { rr });
} else if (object instanceof GeometryContext) {
setActiveView(new ActiveView(((GeometryContext) object).getSimulationContext(), DocumentEditorTreeFolderClass.GEOMETRY_NODE, ActiveViewID.geometry_definition));
} else if (object instanceof Structure) {
followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.STRUCTURES_NODE, ActiveViewID.structures), new Object[] { object });
} else if (object instanceof MolecularType) {
followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.MOLECULAR_TYPES_NODE, ActiveViewID.structures), new Object[] { object });
} else if (object instanceof ReactionStep) {
followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.REACTIONS_NODE, ActiveViewID.reactions), new Object[] { object });
} else if (object instanceof ReactionRule) {
followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.REACTIONS_NODE, ActiveViewID.reactions), new Object[] { object });
} else if (object instanceof SpeciesContextSpec) {
SpeciesContextSpec scs = (SpeciesContextSpec) object;
ActiveView av = new ActiveView(scs.getSimulationContext(), DocumentEditorTreeFolderClass.SPECIFICATIONS_NODE, ActiveViewID.species_settings);
followHyperlink(av, new Object[] { object });
} else if (object instanceof ReactionCombo) {
ReactionCombo rc = (ReactionCombo) object;
followHyperlink(new ActiveView(rc.getReactionContext().getSimulationContext(), DocumentEditorTreeFolderClass.SPECIFICATIONS_NODE, ActiveViewID.reaction_setting), new Object[] { ((ReactionCombo) object).getReactionSpec() });
} else if (object instanceof SpeciesContext) {
followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.SPECIES_NODE, ActiveViewID.species), new Object[] { object });
} else if (object instanceof RbmObservable) {
followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.OBSERVABLES_NODE, ActiveViewID.observables), new Object[] { object });
} else if (object instanceof MathDescription) {
// followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.MATH_SIMULATIONS_NODE, ActiveViewID.generated_math), new Object[] {object});
followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.GEOMETRY_NODE, ActiveViewID.structure_mapping), new Object[] { object });
} else if (object instanceof SpeciesPattern) {
// if (issue.getIssueContext().hasContextType(ContextType.SpeciesContext)){
// SpeciesContext thing = (SpeciesContext)issue.getIssueContext().getContextObject(ContextType.SpeciesContext);
// followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.SPECIES_NODE, ActiveViewID.species), new Object[] {thing});
// }else if(issue.getIssueContext().hasContextType(ContextType.ReactionRule)) {
// ReactionRule thing = (ReactionRule)issue.getIssueContext().getContextObject(ContextType.ReactionRule);
// followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.REACTIONS_NODE, ActiveViewID.reactions), new Object[] {thing});
// }else if(issue.getIssueContext().hasContextType(ContextType.RbmObservable)) {
// RbmObservable thing = (RbmObservable)issue.getIssueContext().getContextObject(ContextType.RbmObservable);
// followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.OBSERVABLES_NODE, ActiveViewID.observables), new Object[] {thing});
// } else {
System.err.println("SpeciesPattern object missing a proper issue context.");
// }
} else if (object instanceof SimulationContext) {
SimulationContext sc = (SimulationContext) object;
IssueCategory ic = issue.getCategory();
switch(ic) {
case RbmNetworkConstraintsBad:
NetworkConstraints nc = sc.getNetworkConstraints();
if (issue.getMessage() == SimulationContext.IssueInsufficientMolecules) {
NetworkConstraintsEntity nce = new NetworkConstraintsEntity(NetworkConstraintsTableModel.sMaxMoleculesName, nc.getMaxMoleculesPerSpecies() + "", NetworkTransformer.defaultMaxMoleculesPerSpecies + "");
followHyperlink(new ActiveView(sc, DocumentEditorTreeFolderClass.SPECIFICATIONS_NODE, ActiveViewID.network_setting), new Object[] { nce });
} else {
NetworkConstraintsEntity nce = new NetworkConstraintsEntity(NetworkConstraintsTableModel.sMaxIterationName, nc.getMaxIteration() + "", NetworkTransformer.defaultMaxIteration + "");
followHyperlink(new ActiveView(sc, DocumentEditorTreeFolderClass.SPECIFICATIONS_NODE, ActiveViewID.network_setting), new Object[] { nce });
}
break;
default:
followHyperlink(new ActiveView(sc, DocumentEditorTreeFolderClass.SPECIFICATIONS_NODE, ActiveViewID.network_setting), new Object[] { object });
break;
}
} else if (object instanceof Geometry) {
if (issueContext.hasContextType(ContextType.SimContext)) {
SimulationContext simContext = (SimulationContext) issueContext.getContextObject(ContextType.SimContext);
followHyperlink(new ActiveView(simContext, DocumentEditorTreeFolderClass.GEOMETRY_NODE, ActiveViewID.geometry_definition), new Object[] { object });
} else if (issueContext.hasContextType(ContextType.MathModel)) {
followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.MATH_GEOMETRY_NODE, ActiveViewID.math_geometry), new Object[] { object });
} else if (issueContext.hasContextType(ContextType.MathDescription)) {
followHyperlink(new ActiveView(null, DocumentEditorTreeFolderClass.GEOMETRY_NODE, ActiveViewID.geometry_definition), new Object[] { object });
}
} else {
System.err.println("unknown object type in IssuePanel.invokeHyperlink(): " + object.getClass() + ", context type: " + issueContext.getContextType());
}
}
}
use of cbit.vcell.model.ReactionStep in project vcell by virtualcell.
the class BioModelEditorReactionTableModel method checkInputValue.
public String checkInputValue(String inputValue, int row, int column) {
ModelProcess modelProcess = getValueAt(row);
String errMsg = null;
switch(column) {
case COLUMN_NAME:
if (modelProcess == null || !modelProcess.getName().equals(inputValue)) {
if (getModel().getReactionStep(inputValue) != null) {
errMsg = "Reaction '" + inputValue + "' already exist!";
errMsg += VCellErrorMessages.PressEscToUndo;
errMsg = "<html>" + errMsg + "</html>";
return errMsg;
}
if (getModel().getRbmModelContainer().getReactionRule(inputValue) != null) {
errMsg = "ReactionRule '" + inputValue + "' already exist!";
errMsg += VCellErrorMessages.PressEscToUndo;
errMsg = "<html>" + errMsg + "</html>";
return errMsg;
}
}
break;
case COLUMN_EQUATION:
try {
if (modelProcess instanceof ReactionStep) {
ReactionStep reactionStep = (ReactionStep) modelProcess;
ModelProcessEquation.parseReaction(reactionStep, getModel(), inputValue);
} else if (modelProcess instanceof ReactionRule) {
// ReactionRuleEmbedded reactionRule = (ReactionRuleEmbedded)modelProcess;
ReactionRule newlyParsedReactionRule_NotUsedForValidation = RbmUtils.parseReactionRule(inputValue, getModel().getStructures()[0], bioModel);
} else {
// new row ... it's a rule if contains parentheses, plain reaction if it does not
if (inputValue.contains("(") && inputValue.contains(")")) {
ReactionRule newlyParsedReactionRule_NotUsedForValidation = RbmUtils.parseReactionRule(inputValue, getModel().getStructures()[0], bioModel);
if (newlyParsedReactionRule_NotUsedForValidation == null) {
throw new RuntimeException("Unable to generate a reaction rule for this input.");
}
} else {
ReactionStep reactionStep = (ReactionStep) modelProcess;
ModelProcessEquation.parseReaction(reactionStep, getModel(), inputValue);
}
}
} catch (org.vcell.model.bngl.ParseException ex) {
errMsg = ex.getMessage();
errMsg += VCellErrorMessages.PressEscToUndo;
errMsg = "<html>" + errMsg + "</html>";
return errMsg;
} catch (Exception ex) {
errMsg = ex.getMessage();
errMsg += VCellErrorMessages.PressEscToUndo;
errMsg = "<html>" + errMsg + "</html>";
return errMsg;
}
break;
case COLUMN_STRUCTURE:
if (getModel().getStructure(inputValue) == null) {
errMsg = "Structure '" + inputValue + "' does not exist!";
errMsg += VCellErrorMessages.PressEscToUndo;
errMsg = "<html>" + errMsg + "</html>";
return errMsg;
}
break;
}
return null;
}
Aggregations