X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fworkers%2FConservationThread.java;h=a8bc268d429a42222564e24d49b32a27149d00ab;hb=b9b0c4c90f6ac88f6f5a1300d1dc4f3e83c79eb2;hp=58510e5737d34ce881e94da9e4bccc1e6286ca09;hpb=59d682209891099d46b960509907c79e3fb276fe;p=jalview.git diff --git a/src/jalview/workers/ConservationThread.java b/src/jalview/workers/ConservationThread.java index 58510e5..a8bc268 100644 --- a/src/jalview/workers/ConservationThread.java +++ b/src/jalview/workers/ConservationThread.java @@ -1,6 +1,6 @@ /* - * 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 + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1) + * Copyright (C) 2014 The Jalview Authors * * This file is part of Jalview. * @@ -14,6 +14,7 @@ * 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 . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.workers; @@ -79,7 +80,7 @@ public class ConservationThread extends AlignCalcWorker implements ourAnnot.add(conservation); ourAnnot.add(quality); ourAnnots = ourAnnot; - + ConsPercGaps = alignViewport.getConsPercGaps(); // AlignViewport.UPDATING_CONSERVATION = true; if (alignment == null || (alWidth = alignment.getWidth()) < 0) @@ -124,7 +125,10 @@ public class ConservationThread extends AlignCalcWorker implements { if (b || !calcMan.isWorking(this) && cons != null && conservation != null && quality != null) + { + alignViewport.setConservation(cons); cons.completeAnnotations(conservation, quality, 0, alWidth); + } } @Override