JAL-2228 always set minimum for count to zero for annotation row
[jalview.git] / src / jalview / workers / ColumnCounterSetWorker.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.workers;
22
23 import jalview.api.AlignViewportI;
24 import jalview.api.AlignmentViewPanel;
25 import jalview.datamodel.AlignmentAnnotation;
26 import jalview.datamodel.AlignmentI;
27 import jalview.datamodel.Annotation;
28 import jalview.datamodel.SequenceFeature;
29 import jalview.datamodel.SequenceI;
30 import jalview.renderer.seqfeatures.FeatureRenderer;
31 import jalview.util.ColorUtils;
32 import jalview.util.Comparison;
33
34 import java.awt.Color;
35 import java.util.ArrayList;
36 import java.util.List;
37
38 /**
39  * A class to compute alignment annotations with column counts for a set of
40  * properties of interest on positions in an alignment. <br>
41  * This is designed to be extensible, by supplying to the constructor an object
42  * that computes a vector of counts for each residue position, based on the
43  * residue and and sequence features at that position.
44  * 
45  */
46 class ColumnCounterSetWorker extends AlignCalcWorker
47 {
48   FeatureSetCounterI counter;
49
50   /**
51    * Constructor registers the annotation for the given alignment frame
52    * 
53    * @param af
54    * @param counter
55    */
56   public ColumnCounterSetWorker(AlignViewportI viewport,
57           AlignmentViewPanel panel, FeatureSetCounterI counter)
58   {
59     super(viewport, panel);
60     ourAnnots = new ArrayList<AlignmentAnnotation>();
61     this.counter = counter;
62     calcMan.registerWorker(this);
63   }
64
65   /**
66    * method called under control of AlignCalcManager to recompute the annotation
67    * when the alignment changes
68    */
69   @Override
70   public void run()
71   {
72     boolean annotationAdded = false;
73     try
74     {
75       calcMan.notifyStart(this);
76
77       while (!calcMan.notifyWorking(this))
78       {
79         try
80         {
81           Thread.sleep(200);
82         } catch (InterruptedException ex)
83         {
84           ex.printStackTrace();
85         }
86       }
87       if (alignViewport.isClosed())
88       {
89         abortAndDestroy();
90         return;
91       }
92
93       if (alignViewport.getAlignment() != null)
94       {
95         try
96         {
97           annotationAdded = computeAnnotations();
98         } catch (IndexOutOfBoundsException x)
99         {
100           // probable race condition. just finish and return without any fuss.
101           return;
102         }
103       }
104     } catch (OutOfMemoryError error)
105     {
106       ap.raiseOOMWarning("calculating feature counts", error);
107       calcMan.disableWorker(this);
108     } finally
109     {
110       calcMan.workerComplete(this);
111     }
112
113     if (ap != null)
114     {
115       if (annotationAdded)
116       {
117         ap.adjustAnnotationHeight();
118       }
119       ap.paintAlignment(true);
120     }
121
122   }
123
124   /**
125    * Scan each column of the alignment to calculate a count by feature type. Set
126    * the count as the value of the alignment annotation for that feature type.
127    * 
128    * @return
129    */
130   boolean computeAnnotations()
131   {
132     FeatureRenderer fr = new FeatureRenderer(alignViewport);
133     // TODO use the commented out code once JAL-2075 is fixed
134     // to get adequate performance on genomic length sequence
135     AlignmentI alignment = alignViewport.getAlignment();
136     // AlignmentView alignmentView = alignViewport.getAlignmentView(false);
137     // AlignmentI alignment = alignmentView.getVisibleAlignment(' ');
138
139     int rows = counter.getNames().length;
140
141     int width = alignment.getWidth();
142     int height = alignment.getHeight();
143     int[][] counts = new int[width][rows];
144     int max[] = new int[rows];
145     for (int crow = 0; crow < rows; crow++)
146     {
147       max[crow] = 0;
148     }
149
150     int[] minC = counter.getMinColour();
151     int[] maxC = counter.getMaxColour();
152     Color minColour = new Color(minC[0], minC[1], minC[2]);
153     Color maxColour = new Color(maxC[0], maxC[1], maxC[2]);
154
155     for (int col = 0; col < width; col++)
156     {
157       int[] count = counts[col];
158       for (int crow = 0; crow < rows; crow++)
159       {
160         count[crow] = 0;
161       }
162       for (int row = 0; row < height; row++)
163       {
164         int[] colcount = countFeaturesAt(alignment, col, row, fr);
165         if (colcount != null)
166         {
167           for (int crow = 0; crow < rows; crow++)
168           {
169             count[crow] += colcount[crow];
170           }
171         }
172       }
173       counts[col] = count;
174       for (int crow = 0; crow < rows; crow++)
175       {
176         max[crow] = Math.max(count[crow], max[crow]);
177       }
178     }
179
180     boolean annotationAdded = false;
181
182     for (int anrow = 0; anrow < rows; anrow++)
183     {
184       Annotation[] anns = new Annotation[width];
185       long rmax = 0;
186       /*
187        * add counts as annotations. zeros are needed since select-by-annotation ignores empty annotation positions
188        */
189       for (int i = 0; i < counts.length; i++)
190       {
191         int count = counts[i][anrow];
192         if (count > 0)
193         {
194           Color color = ColorUtils.getGraduatedColour(count, 0, minColour,
195                   max[anrow], maxColour);
196           String str = String.valueOf(count);
197           anns[i] = new Annotation(str, str, '0', count, color);
198         }
199           rmax = Long.max(count, rmax);
200       }
201
202       /*
203        * construct or update the annotation
204        */
205       String description = counter.getDescriptions()[anrow];
206       if (!alignment.findAnnotation(description).iterator().hasNext())
207       {
208         annotationAdded = true;
209       }
210       AlignmentAnnotation ann = alignment.findOrCreateAnnotation(
211               counter.getNames()[anrow], description, false, null, null);
212       ann.description = description;
213       ann.showAllColLabels = true;
214       ann.scaleColLabel = true;
215       ann.graph = AlignmentAnnotation.BAR_GRAPH;
216       ann.annotations = anns;
217       ann.graphMin = 0f; // minimum always zero count
218       ann.graphMax = rmax; // maximum count from loop over feature columns
219       ann.validateRangeAndDisplay();
220       if (!ourAnnots.contains(ann))
221       {
222         ourAnnots.add(ann);
223       }
224     }
225     return annotationAdded;
226   }
227
228   /**
229    * Returns a count of any feature types present at the specified position of
230    * the alignment
231    * 
232    * @param alignment
233    * @param col
234    * @param row
235    * @param fr
236    */
237   int[] countFeaturesAt(AlignmentI alignment, int col, int row,
238           FeatureRenderer fr)
239   {
240     SequenceI seq = alignment.getSequenceAt(row);
241     if (seq == null)
242     {
243       return null;
244     }
245     if (col >= seq.getLength())
246     {
247       return null;// sequence doesn't extend this far
248     }
249     char res = seq.getCharAt(col);
250     if (Comparison.isGap(res))
251     {
252       return null;
253     }
254     int pos = seq.findPosition(col);
255
256     /*
257      * compute a count for any displayed features at residue
258      */
259     // NB have to adjust pos if using AlignmentView.getVisibleAlignment
260     // see JAL-2075
261     List<SequenceFeature> features = fr.findFeaturesAtRes(seq, pos);
262     int[] count = this.counter.count(String.valueOf(res), features);
263     return count;
264   }
265
266   /**
267    * Method called when the user changes display options that may affect how the
268    * annotation is rendered, but do not change its values. Currently no such
269    * options affect user-defined annotation, so this method does nothing.
270    */
271   @Override
272   public void updateAnnotation()
273   {
274     // do nothing
275   }
276
277   /**
278    * Answers true to indicate that if this worker's annotation is deleted from
279    * the display, the worker should also be removed. This prevents it running
280    * and recreating the annotation when the alignment changes.
281    */
282   @Override
283   public boolean isDeletable()
284   {
285     return true;
286   }
287 }