2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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.
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.
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.
21 package jalview.workers;
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;
34 import java.awt.Color;
35 import java.util.ArrayList;
36 import java.util.List;
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.
46 class ColumnCounterSetWorker extends AlignCalcWorker
48 FeatureSetCounterI counter;
51 * Constructor registers the annotation for the given alignment frame
56 public ColumnCounterSetWorker(AlignViewportI viewport,
57 AlignmentViewPanel panel, FeatureSetCounterI counter)
59 super(viewport, panel);
60 ourAnnots = new ArrayList<AlignmentAnnotation>();
61 this.counter = counter;
62 calcMan.registerWorker(this);
66 * method called under control of AlignCalcManager to recompute the annotation
67 * when the alignment changes
72 boolean annotationAdded = false;
75 calcMan.notifyStart(this);
77 while (!calcMan.notifyWorking(this))
82 } catch (InterruptedException ex)
87 if (alignViewport.isClosed())
93 if (alignViewport.getAlignment() != null)
97 annotationAdded = computeAnnotations();
98 } catch (IndexOutOfBoundsException x)
100 // probable race condition. just finish and return without any fuss.
104 } catch (OutOfMemoryError error)
106 ap.raiseOOMWarning("calculating feature counts", error);
107 calcMan.disableWorker(this);
110 calcMan.workerComplete(this);
117 ap.adjustAnnotationHeight();
119 ap.paintAlignment(true);
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.
130 boolean computeAnnotations()
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(' ');
139 int rows = counter.getNames().length;
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++)
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]);
155 for (int col = 0; col < width; col++)
157 int[] count = counts[col];
158 for (int crow = 0; crow < rows; crow++)
162 for (int row = 0; row < height; row++)
164 int[] colcount = countFeaturesAt(alignment, col, row, fr);
165 if (colcount != null)
167 for (int crow = 0; crow < rows; crow++)
169 count[crow] += colcount[crow];
174 for (int crow = 0; crow < rows; crow++)
176 max[crow] = Math.max(count[crow], max[crow]);
180 boolean annotationAdded = false;
182 for (int anrow = 0; anrow < rows; anrow++)
184 Annotation[] anns = new Annotation[width];
187 * add counts as annotations. zeros are needed since select-by-annotation ignores empty annotation positions
189 for (int i = 0; i < counts.length; i++)
191 int count = counts[i][anrow];
193 Color color = ColorUtils.getGraduatedColour(count, 0, minColour,
194 max[anrow], maxColour);
195 String str = String.valueOf(count);
196 anns[i] = new Annotation(str, str, '0', count, color);
197 rmax = Math.max(count, rmax);
201 * construct or update the annotation
203 String description = counter.getDescriptions()[anrow];
204 if (!alignment.findAnnotation(description).iterator().hasNext())
206 annotationAdded = true;
208 AlignmentAnnotation ann = alignment.findOrCreateAnnotation(
209 counter.getNames()[anrow], description, false, null, null);
210 ann.description = description;
211 ann.showAllColLabels = true;
212 ann.scaleColLabel = true;
213 ann.graph = AlignmentAnnotation.BAR_GRAPH;
214 ann.annotations = anns;
215 ann.graphMin = 0f; // minimum always zero count
216 ann.graphMax = rmax; // maximum count from loop over feature columns
217 ann.validateRangeAndDisplay();
218 if (!ourAnnots.contains(ann))
223 return annotationAdded;
227 * Returns a count of any feature types present at the specified position of
235 int[] countFeaturesAt(AlignmentI alignment, int col, int row,
238 SequenceI seq = alignment.getSequenceAt(row);
243 if (col >= seq.getLength())
245 return null;// sequence doesn't extend this far
247 char res = seq.getCharAt(col);
248 if (Comparison.isGap(res))
252 int pos = seq.findPosition(col);
255 * compute a count for any displayed features at residue
257 // NB have to adjust pos if using AlignmentView.getVisibleAlignment
259 List<SequenceFeature> features = fr.findFeaturesAtRes(seq, pos);
260 int[] count = this.counter.count(String.valueOf(res), features);
265 * Method called when the user changes display options that may affect how the
266 * annotation is rendered, but do not change its values. Currently no such
267 * options affect user-defined annotation, so this method does nothing.
270 public void updateAnnotation()
276 * Answers true to indicate that if this worker's annotation is deleted from
277 * the display, the worker should also be removed. This prevents it running
278 * and recreating the annotation when the alignment changes.
281 public boolean isDeletable()