X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fworkers%2FConsensusThread.java;h=343e64d47e2ef5ae75ddf77e9b11f56371310f3b;hb=4ea6a00274e0a209a7dbec074f04a21ec1a80b28;hp=9bdd714739bf2841be55a499f1f74cfb967f1ea3;hpb=f61b2748a32ef03e687abc37b97640873c2e44aa;p=jalview.git diff --git a/src/jalview/workers/ConsensusThread.java b/src/jalview/workers/ConsensusThread.java index 9bdd714..343e64d 100644 --- a/src/jalview/workers/ConsensusThread.java +++ b/src/jalview/workers/ConsensusThread.java @@ -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 . + */ 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()); } } }