JAL-1767 refactorings to enable faithful restore of PCA from project
[jalview.git] / src / jalview / gui / CalculationChooser.java
index f0d9521..a41a998 100644 (file)
@@ -584,7 +584,13 @@ public class CalculationChooser extends JPanel
               JvOptionPane.WARNING_MESSAGE);
       return;
     }
+
+    /*
+     * construct the panel and kick off its calculation thread
+     */
     pcaPanel = new PCAPanel(af.alignPanel, modelName, params);
+    new Thread(pcaPanel).start();
+
   }
 
   /**