Cleanup, note: rectangular selection works by holding mouse wheel and s (see line...
[jalview.git] / src / jalview / gui / CalculationChooser.java
index 816b537..21d985c 100644 (file)
@@ -89,13 +89,13 @@ public class CalculationChooser extends JPanel
 
   private static final int MIN_PCA_SELECTION = 4;
 
-  private static final int MIN_PASIMAP_SELECTION = 4; //&! <++>!! chekc how many
+  private static final int MIN_PASIMAP_SELECTION = 8; 
 
   AlignFrame af;
 
   JRadioButton pca;
 
-  JRadioButton pasimap;        //&! initialize JRadioButton object for pasimap
+  JRadioButton pasimap;        
 
   JRadioButton neighbourJoining;
 
@@ -124,7 +124,6 @@ public class CalculationChooser extends JPanel
    */
   private PCAPanel pcaPanel;
 
-  //&! 
   private PaSiMapPanel pasimapPanel;
 
   /**
@@ -207,7 +206,7 @@ public class CalculationChooser extends JPanel
     pcaBorderless.add(pca, FlowLayout.LEFT);
     calcChoicePanel.add(pcaBorderless, FlowLayout.LEFT);
 
-    //&! create pasimap panel
+    // create pasimap panel
     JPanel pasimapBorderless = new JPanel(new FlowLayout(FlowLayout.LEFT));    // create new JPanel (button) for pasimap
     pasimapBorderless.setBorder(
            BorderFactory.createEmptyBorder(2, b.left, 2, b.right));    // set border (margin) for button (same as treePanel and pca)
@@ -222,7 +221,7 @@ public class CalculationChooser extends JPanel
 
     ButtonGroup calcTypes = new ButtonGroup();
     calcTypes.add(pca);
-    calcTypes.add(pasimap);    //&! add pasimap to the calculation types
+    calcTypes.add(pasimap);
     calcTypes.add(neighbourJoining);
     calcTypes.add(averageDistance);