Jalview 2.8 Source Header
[jalview.git] / src / jalview / workers / ConsensusThread.java
index 9bdd714..343e64d 100644 (file)
@@ -1,3 +1,20 @@
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
+ * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
+ * 
+ * This file is part of Jalview.
+ * 
+ * Jalview is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License 
+ * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+ *  
+ * Jalview is distributed in the hope that it will be useful, but 
+ * WITHOUT ANY WARRANTY; without even the implied warranty 
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
+ * PURPOSE.  See the GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package jalview.workers;
 
 import jalview.analysis.AAFrequency;
@@ -11,7 +28,8 @@ import jalview.schemes.ColourSchemeI;
 
 import java.util.Hashtable;
 
-public class ConsensusThread extends AlignCalcWorker implements AlignCalcWorkerI
+public class ConsensusThread extends AlignCalcWorker implements
+        AlignCalcWorkerI
 {
   public ConsensusThread(AlignViewportI alignViewport,
           AlignmentViewPanel alignPanel)
@@ -27,11 +45,13 @@ public class ConsensusThread extends AlignCalcWorker implements AlignCalcWorkerI
       return;
     }
     calcMan.notifyStart(this);
-    long started=System.currentTimeMillis();
+    long started = System.currentTimeMillis();
     try
     {
-      AlignmentAnnotation consensus = alignViewport.getAlignmentConsensusAnnotation();
-      if (consensus==null || calcMan.isPending(this))  {
+      AlignmentAnnotation consensus = alignViewport
+              .getAlignmentConsensusAnnotation();
+      if (consensus == null || calcMan.isPending(this))
+      {
         calcMan.workerComplete(this);
         return;
       }
@@ -42,7 +62,7 @@ public class ConsensusThread extends AlignCalcWorker implements AlignCalcWorkerI
         {
           if (ap != null)
           {
-           ap.paintAlignment(false);
+            ap.paintAlignment(false);
           }
           Thread.sleep(200);
         } catch (Exception ex)
@@ -66,21 +86,22 @@ public class ConsensusThread extends AlignCalcWorker implements AlignCalcWorkerI
 
         return;
       }
-      consensus = alignViewport
-              .getAlignmentConsensusAnnotation();
+      consensus = alignViewport.getAlignmentConsensusAnnotation();
 
       consensus.annotations = null;
       consensus.annotations = new Annotation[aWidth];
       Hashtable[] hconsensus = alignViewport.getSequenceConsensusHash();
       hconsensus = new Hashtable[aWidth];
-      try {
-       AAFrequency.calculate(alignment.getSequencesArray(), 0,
-              alignment.getWidth(), hconsensus, true);
-      } catch (ArrayIndexOutOfBoundsException x){
+      try
+      {
+        AAFrequency.calculate(alignment.getSequencesArray(), 0,
+                alignment.getWidth(), hconsensus, true);
+      } catch (ArrayIndexOutOfBoundsException x)
+      {
         // this happens due to a race condition -
         // alignment was edited at same time as calculation was running
         //
-//        calcMan.workerCannotRun(this);
+        // calcMan.workerCannotRun(this);
         calcMan.workerComplete(this);
         return;
       }
@@ -124,11 +145,12 @@ public class ConsensusThread extends AlignCalcWorker implements AlignCalcWorkerI
     AlignmentAnnotation consensus = alignViewport
             .getAlignmentConsensusAnnotation();
     Hashtable[] hconsensus = alignViewport.getSequenceConsensusHash();
-    if (immediate || !calcMan.isWorking(this) && consensus!=null && hconsensus!=null)
+    if (immediate || !calcMan.isWorking(this) && consensus != null
+            && hconsensus != null)
     {
       AAFrequency.completeConsensus(consensus, hconsensus, 0,
-            hconsensus.length, alignViewport.getIgnoreGapsConsensus(),
-            alignViewport.isShowSequenceLogo());
+              hconsensus.length, alignViewport.getIgnoreGapsConsensus(),
+              alignViewport.isShowSequenceLogo());
     }
   }
 }