protected JCheckBoxMenuItem showGroupConsensus=new JCheckBoxMenuItem();
protected JCheckBoxMenuItem showGroupConservation=new JCheckBoxMenuItem();
-
+
+ private JMenuItem grpsFromSelection = new JMenuItem();
public GAlignFrame()
{
try
invertSequenceMenuItem_actionPerformed(e);
}
});
+ grpsFromSelection.setText("Make Groups for selection");
+ grpsFromSelection.addActionListener(new java.awt.event.ActionListener()
+ {
+ public void actionPerformed(ActionEvent e)
+ {
+ makeGrpsFromSelection_actionPerformed(e);
+ }
+ });
+
remove2LeftMenuItem.setText("Remove Left");
remove2LeftMenuItem.setAccelerator(javax.swing.KeyStroke.getKeyStroke(
java.awt.event.KeyEvent.VK_L, Toolkit.getDefaultToolkit()
selectMenu.add(invertSequenceMenuItem);
selectMenu.add(invertColSel);
selectMenu.add(deleteGroups);
+ selectMenu.add(grpsFromSelection);
+ }
+
+ protected void makeGrpsFromSelection_actionPerformed(ActionEvent e)
+ {
+ // TODO Auto-generated method stub
+
}
protected void showGroupConsensus_actionPerformed(ActionEvent e)