JAL-2034 make colour scheme update optional when group conservation is calculated...
[jalview.git] / src / jalview / datamodel / SequenceGroup.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.datamodel;
22
23 import jalview.analysis.AAFrequency;
24 import jalview.analysis.Conservation;
25 import jalview.schemes.ColourSchemeI;
26 import jalview.schemes.ResidueProperties;
27
28 import java.awt.Color;
29 import java.util.ArrayList;
30 import java.util.Hashtable;
31 import java.util.List;
32 import java.util.Map;
33 import java.util.Vector;
34
35 /**
36  * Collects a set contiguous ranges on a set of sequences
37  * 
38  * @author $author$
39  * @version $Revision$
40  */
41 public class SequenceGroup implements AnnotatedCollectionI
42 {
43   String groupName;
44
45   String description;
46
47   Conservation conserve;
48
49   Vector aaFrequency;
50
51   boolean displayBoxes = true;
52
53   boolean displayText = true;
54
55   boolean colourText = false;
56
57   /**
58    * after Olivier's non-conserved only character display
59    */
60   boolean showNonconserved = false;
61
62   /**
63    * group members
64    */
65   private List<SequenceI> sequences = new ArrayList<SequenceI>();
66
67   /**
68    * representative sequence for this group (if any)
69    */
70   private SequenceI seqrep = null;
71
72   int width = -1;
73
74   /**
75    * Colourscheme applied to group if any
76    */
77   public ColourSchemeI cs;
78
79   // start column (base 0)
80   int startRes = 0;
81
82   // end column (base 0)
83   int endRes = 0;
84
85   public Color outlineColour = Color.black;
86
87   public Color idColour = null;
88
89   public int thresholdTextColour = 0;
90
91   public Color textColour = Color.black;
92
93   public Color textColour2 = Color.white;
94
95   /**
96    * consensus calculation property
97    */
98   private boolean ignoreGapsInConsensus = true;
99
100   /**
101    * consensus calculation property
102    */
103   private boolean showSequenceLogo = false;
104
105   /**
106    * flag indicating if logo should be rendered normalised
107    */
108   private boolean normaliseSequenceLogo;
109
110   /**
111    * @return the includeAllConsSymbols
112    */
113   public boolean isShowSequenceLogo()
114   {
115     return showSequenceLogo;
116   }
117
118   /**
119    * Creates a new SequenceGroup object.
120    */
121   public SequenceGroup()
122   {
123     groupName = "JGroup:" + this.hashCode();
124   }
125
126   /**
127    * Creates a new SequenceGroup object.
128    * 
129    * @param sequences
130    * @param groupName
131    * @param scheme
132    * @param displayBoxes
133    * @param displayText
134    * @param colourText
135    * @param start
136    *          first column of group
137    * @param end
138    *          last column of group
139    */
140   public SequenceGroup(List<SequenceI> sequences, String groupName,
141           ColourSchemeI scheme, boolean displayBoxes, boolean displayText,
142           boolean colourText, int start, int end)
143   {
144     this.sequences = sequences;
145     this.groupName = groupName;
146     this.displayBoxes = displayBoxes;
147     this.displayText = displayText;
148     this.colourText = colourText;
149     this.cs = scheme;
150     startRes = start;
151     endRes = end;
152     recalcConservation();
153   }
154
155   /**
156    * copy constructor
157    * 
158    * @param seqsel
159    */
160   public SequenceGroup(SequenceGroup seqsel)
161   {
162     if (seqsel != null)
163     {
164       sequences = new ArrayList<SequenceI>();
165       sequences.addAll(seqsel.sequences);
166       if (seqsel.groupName != null)
167       {
168         groupName = new String(seqsel.groupName);
169       }
170       displayBoxes = seqsel.displayBoxes;
171       displayText = seqsel.displayText;
172       colourText = seqsel.colourText;
173       startRes = seqsel.startRes;
174       endRes = seqsel.endRes;
175       cs = seqsel.cs;
176       if (seqsel.description != null)
177       {
178         description = new String(seqsel.description);
179       }
180       hidecols = seqsel.hidecols;
181       hidereps = seqsel.hidereps;
182       idColour = seqsel.idColour;
183       outlineColour = seqsel.outlineColour;
184       seqrep = seqsel.seqrep;
185       textColour = seqsel.textColour;
186       textColour2 = seqsel.textColour2;
187       thresholdTextColour = seqsel.thresholdTextColour;
188       width = seqsel.width;
189       ignoreGapsInConsensus = seqsel.ignoreGapsInConsensus;
190       if (seqsel.conserve != null)
191       {
192         recalcConservation(); // safer than
193         // aaFrequency = (Vector) seqsel.aaFrequency.clone(); // ??
194       }
195     }
196   }
197
198   public SequenceI[] getSelectionAsNewSequences(AlignmentI align)
199   {
200     int iSize = sequences.size();
201     SequenceI[] seqs = new SequenceI[iSize];
202     SequenceI[] inorder = getSequencesInOrder(align);
203
204     for (int i = 0, ipos = 0; i < inorder.length; i++)
205     {
206       SequenceI seq = inorder[i];
207
208       seqs[ipos] = seq.getSubSequence(startRes, endRes + 1);
209       if (seqs[ipos] != null)
210       {
211         seqs[ipos].setDescription(seq.getDescription());
212         seqs[ipos].setDBRefs(seq.getDBRefs());
213         seqs[ipos].setSequenceFeatures(seq.getSequenceFeatures());
214         if (seq.getDatasetSequence() != null)
215         {
216           seqs[ipos].setDatasetSequence(seq.getDatasetSequence());
217         }
218
219         if (seq.getAnnotation() != null)
220         {
221           AlignmentAnnotation[] alann = align.getAlignmentAnnotation();
222           // Only copy annotation that is either a score or referenced by the
223           // alignment's annotation vector
224           for (int a = 0; a < seq.getAnnotation().length; a++)
225           {
226             AlignmentAnnotation tocopy = seq.getAnnotation()[a];
227             if (alann != null)
228             {
229               boolean found = false;
230               for (int pos = 0; pos < alann.length; pos++)
231               {
232                 if (alann[pos] == tocopy)
233                 {
234                   found = true;
235                   break;
236                 }
237               }
238               if (!found)
239               {
240                 continue;
241               }
242             }
243             AlignmentAnnotation newannot = new AlignmentAnnotation(
244                     seq.getAnnotation()[a]);
245             newannot.restrict(startRes, endRes);
246             newannot.setSequenceRef(seqs[ipos]);
247             newannot.adjustForAlignment();
248             seqs[ipos].addAlignmentAnnotation(newannot);
249           }
250         }
251         ipos++;
252       }
253       else
254       {
255         iSize--;
256       }
257     }
258     if (iSize != inorder.length)
259     {
260       SequenceI[] nseqs = new SequenceI[iSize];
261       System.arraycopy(seqs, 0, nseqs, 0, iSize);
262       seqs = nseqs;
263     }
264     return seqs;
265
266   }
267
268   /**
269    * If sequence ends in gaps, the end residue can be correctly calculated here
270    * 
271    * @param seq
272    *          SequenceI
273    * @return int
274    */
275   public int findEndRes(SequenceI seq)
276   {
277     int eres = 0;
278     char ch;
279
280     for (int j = 0; j < endRes + 1 && j < seq.getLength(); j++)
281     {
282       ch = seq.getCharAt(j);
283       if (!jalview.util.Comparison.isGap((ch)))
284       {
285         eres++;
286       }
287     }
288
289     if (eres > 0)
290     {
291       eres += seq.getStart() - 1;
292     }
293
294     return eres;
295   }
296
297   @Override
298   public List<SequenceI> getSequences()
299   {
300     return sequences;
301   }
302
303   @Override
304   public List<SequenceI> getSequences(
305           Map<SequenceI, SequenceCollectionI> hiddenReps)
306   {
307     if (hiddenReps == null)
308     {
309       // TODO: need a synchronizedCollection here ?
310       return sequences;
311     }
312     else
313     {
314       List<SequenceI> allSequences = new ArrayList<SequenceI>();
315       for (SequenceI seq : sequences)
316       {
317         allSequences.add(seq);
318         if (hiddenReps.containsKey(seq))
319         {
320           SequenceCollectionI hsg = hiddenReps.get(seq);
321           for (SequenceI seq2 : hsg.getSequences())
322           {
323             if (seq2 != seq && !allSequences.contains(seq2))
324             {
325               allSequences.add(seq2);
326             }
327           }
328         }
329       }
330
331       return allSequences;
332     }
333   }
334
335   public SequenceI[] getSequencesAsArray(
336           Map<SequenceI, SequenceCollectionI> map)
337   {
338     List<SequenceI> tmp = getSequences(map);
339     if (tmp == null)
340     {
341       return null;
342     }
343     return tmp.toArray(new SequenceI[tmp.size()]);
344   }
345
346   /**
347    * DOCUMENT ME!
348    * 
349    * @param col
350    *          DOCUMENT ME!
351    * 
352    * @return DOCUMENT ME!
353    */
354   public boolean adjustForRemoveLeft(int col)
355   {
356     // return value is true if the group still exists
357     if (startRes >= col)
358     {
359       startRes = startRes - col;
360     }
361
362     if (endRes >= col)
363     {
364       endRes = endRes - col;
365
366       if (startRes > endRes)
367       {
368         startRes = 0;
369       }
370     }
371     else
372     {
373       // must delete this group!!
374       return false;
375     }
376
377     return true;
378   }
379
380   /**
381    * DOCUMENT ME!
382    * 
383    * @param col
384    *          DOCUMENT ME!
385    * 
386    * @return DOCUMENT ME!
387    */
388   public boolean adjustForRemoveRight(int col)
389   {
390     if (startRes > col)
391     {
392       // delete this group
393       return false;
394     }
395
396     if (endRes >= col)
397     {
398       endRes = col;
399     }
400
401     return true;
402   }
403
404   /**
405    * DOCUMENT ME!
406    * 
407    * @return DOCUMENT ME!
408    */
409   public String getName()
410   {
411     return groupName;
412   }
413
414   public String getDescription()
415   {
416     return description;
417   }
418
419   /**
420    * DOCUMENT ME!
421    * 
422    * @param name
423    *          DOCUMENT ME!
424    */
425   public void setName(String name)
426   {
427     groupName = name;
428     // TODO: URGENT: update dependent objects (annotation row)
429   }
430
431   public void setDescription(String desc)
432   {
433     description = desc;
434   }
435
436   /**
437    * DOCUMENT ME!
438    * 
439    * @return DOCUMENT ME!
440    */
441   public Conservation getConservation()
442   {
443     return conserve;
444   }
445
446   /**
447    * DOCUMENT ME!
448    * 
449    * @param c
450    *          DOCUMENT ME!
451    */
452   public void setConservation(Conservation c)
453   {
454     conserve = c;
455   }
456
457   /**
458    * Add s to this sequence group. If aligment sequence is already contained in
459    * group, it will not be added again, but recalculation may happen if the flag
460    * is set.
461    * 
462    * @param s
463    *          alignment sequence to be added
464    * @param recalc
465    *          true means Group's conservation should be recalculated
466    */
467   public void addSequence(SequenceI s, boolean recalc)
468   {
469     synchronized (sequences)
470     {
471       if (s != null && !sequences.contains(s))
472       {
473         sequences.add(s);
474       }
475
476       if (recalc)
477       {
478         recalcConservation();
479       }
480     }
481   }
482
483   /**
484    * Max Gaps Threshold (percent) for performing a conservation calculation
485    */
486   private int consPercGaps = 25;
487
488   /**
489    * @return Max Gaps Threshold for performing a conservation calculation
490    */
491   public int getConsPercGaps()
492   {
493     return consPercGaps;
494   }
495
496   /**
497    * set Max Gaps Threshold (percent) for performing a conservation calculation
498    * 
499    * @param consPercGaps
500    */
501   public void setConsPercGaps(int consPercGaps)
502   {
503     this.consPercGaps = consPercGaps;
504   }
505
506   /**
507    * calculate residue conservation and colourschemes for group - but only if
508    * necessary. returns true if the calculation resulted in a visible change to
509    * group
510    */
511   public boolean recalcConservation()
512   {
513     return recalcConservation(false);
514   }
515
516   /**
517    * calculate residue conservation for group - but only if necessary. returns
518    * true if the calculation resulted in a visible change to group
519    * 
520    * @param defer
521    *          when set, colourschemes for this group are not refreshed after
522    *          recalculation
523    */
524   public boolean recalcConservation(boolean defer)
525   {
526     if (cs == null && consensus == null && conservation == null)
527     {
528       return false;
529     }
530     // TODO: try harder to detect changes in state in order to minimise
531     // recalculation effort
532     try
533     {
534       Hashtable cnsns[] = AAFrequency.calculate(sequences, startRes,
535               endRes + 1, showSequenceLogo);
536       if (consensus != null)
537       {
538         _updateConsensusRow(cnsns, sequences.size());
539       }
540       if (cs != null)
541       {
542         cs.setConsensus(cnsns);
543       }
544
545       if ((conservation != null)
546               || (cs != null && cs.conservationApplied()))
547       {
548         Conservation c = new Conservation(groupName,
549                 ResidueProperties.propHash, 3, sequences, startRes,
550                 endRes + 1);
551         c.calculate();
552         c.verdict(false, consPercGaps);
553         if (conservation != null)
554         {
555           _updateConservationRow(c);
556         }
557         if (cs != null)
558         {
559           if (cs.conservationApplied())
560           {
561             cs.setConservation(c);
562           }
563         }
564       }
565       if (cs != null && !defer)
566       {
567         // TODO: JAL-2034 should cs.alignmentChanged modify return state
568         cs.alignmentChanged(context != null ? context : this, null);
569         return true;
570       }
571       else
572       {
573         return false;
574       }
575     } catch (java.lang.OutOfMemoryError err)
576     {
577       // TODO: catch OOM
578       System.out.println("Out of memory loading groups: " + err);
579     }
580     return false;
581   }
582
583   private void _updateConservationRow(Conservation c)
584   {
585     if (conservation == null)
586     {
587       getConservation();
588     }
589     // update Labels
590     conservation.label = "Conservation for " + getName();
591     conservation.description = "Conservation for group " + getName()
592             + " less than " + consPercGaps + "% gaps";
593     // preserve width if already set
594     int aWidth = (conservation.annotations != null) ? (endRes < conservation.annotations.length ? conservation.annotations.length
595             : endRes + 1)
596             : endRes + 1;
597     conservation.annotations = null;
598     conservation.annotations = new Annotation[aWidth]; // should be alignment
599                                                        // width
600     c.completeAnnotations(conservation, null, startRes, endRes + 1);
601   }
602
603   public Hashtable[] consensusData = null;
604
605   private void _updateConsensusRow(Hashtable[] cnsns, long nseq)
606   {
607     if (consensus == null)
608     {
609       getConsensus();
610     }
611     consensus.label = "Consensus for " + getName();
612     consensus.description = "Percent Identity";
613     consensusData = cnsns;
614     // preserve width if already set
615     int aWidth = (consensus.annotations != null) ? (endRes < consensus.annotations.length ? consensus.annotations.length
616             : endRes + 1)
617             : endRes + 1;
618     consensus.annotations = null;
619     consensus.annotations = new Annotation[aWidth]; // should be alignment width
620
621     AAFrequency.completeConsensus(consensus, cnsns, startRes, endRes + 1,
622             ignoreGapsInConsensus, showSequenceLogo, nseq); // TODO: setting
623                                                             // container
624     // for
625     // ignoreGapsInConsensusCalculation);
626   }
627
628   /**
629    * @param s
630    *          sequence to either add or remove from group
631    * @param recalc
632    *          flag passed to delete/addSequence to indicate if group properties
633    *          should be recalculated
634    */
635   public void addOrRemove(SequenceI s, boolean recalc)
636   {
637     synchronized (sequences)
638     {
639       if (sequences.contains(s))
640       {
641         deleteSequence(s, recalc);
642       }
643       else
644       {
645         addSequence(s, recalc);
646       }
647     }
648   }
649
650   /**
651    * remove
652    * 
653    * @param s
654    *          to be removed
655    * @param recalc
656    *          true means recalculate conservation
657    */
658   public void deleteSequence(SequenceI s, boolean recalc)
659   {
660     synchronized (sequences)
661     {
662       sequences.remove(s);
663
664       if (recalc)
665       {
666         recalcConservation();
667       }
668     }
669   }
670
671   /**
672    * 
673    * 
674    * @return the first column selected by this group. Runs from 0<=i<N_cols
675    */
676   @Override
677   public int getStartRes()
678   {
679     return startRes;
680   }
681
682   /**
683    * 
684    * @return the groups last selected column. Runs from 0<=i<N_cols
685    */
686   @Override
687   public int getEndRes()
688   {
689     return endRes;
690   }
691
692   /**
693    * Set the first column selected by this group. Runs from 0<=i<N_cols
694    * 
695    * @param i
696    */
697   public void setStartRes(int i)
698   {
699     startRes = i;
700   }
701
702   /**
703    * Set the groups last selected column. Runs from 0<=i<N_cols
704    * 
705    * @param i
706    */
707   public void setEndRes(int i)
708   {
709     endRes = i;
710   }
711
712   /**
713    * @return number of sequences in group
714    */
715   public int getSize()
716   {
717     return sequences.size();
718   }
719
720   /**
721    * @param i
722    * @return the ith sequence
723    */
724   public SequenceI getSequenceAt(int i)
725   {
726     return sequences.get(i);
727   }
728
729   /**
730    * @param state
731    *          colourText
732    */
733   public void setColourText(boolean state)
734   {
735     colourText = state;
736   }
737
738   /**
739    * DOCUMENT ME!
740    * 
741    * @return DOCUMENT ME!
742    */
743   public boolean getColourText()
744   {
745     return colourText;
746   }
747
748   /**
749    * DOCUMENT ME!
750    * 
751    * @param state
752    *          DOCUMENT ME!
753    */
754   public void setDisplayText(boolean state)
755   {
756     displayText = state;
757   }
758
759   /**
760    * DOCUMENT ME!
761    * 
762    * @return DOCUMENT ME!
763    */
764   public boolean getDisplayText()
765   {
766     return displayText;
767   }
768
769   /**
770    * DOCUMENT ME!
771    * 
772    * @param state
773    *          DOCUMENT ME!
774    */
775   public void setDisplayBoxes(boolean state)
776   {
777     displayBoxes = state;
778   }
779
780   /**
781    * DOCUMENT ME!
782    * 
783    * @return DOCUMENT ME!
784    */
785   public boolean getDisplayBoxes()
786   {
787     return displayBoxes;
788   }
789
790   /**
791    * computes the width of current set of sequences and returns it
792    * 
793    * @return DOCUMENT ME!
794    */
795   @Override
796   public int getWidth()
797   {
798     synchronized (sequences)
799     {
800       // MC This needs to get reset when characters are inserted and deleted
801       boolean first = true;
802       for (SequenceI seq : sequences)
803       {
804         if (first || seq.getLength() > width)
805         {
806           width = seq.getLength();
807           first = false;
808         }
809       }
810       return width;
811     }
812   }
813
814   /**
815    * DOCUMENT ME!
816    * 
817    * @param c
818    *          DOCUMENT ME!
819    */
820   public void setOutlineColour(Color c)
821   {
822     outlineColour = c;
823   }
824
825   /**
826    * DOCUMENT ME!
827    * 
828    * @return DOCUMENT ME!
829    */
830   public Color getOutlineColour()
831   {
832     return outlineColour;
833   }
834
835   /**
836    * 
837    * returns the sequences in the group ordered by the ordering given by al.
838    * this used to return an array with null entries regardless, new behaviour is
839    * below. TODO: verify that this does not affect use in applet or application
840    * 
841    * @param al
842    *          Alignment
843    * @return SequenceI[] intersection of sequences in group with al, ordered by
844    *         al, or null if group does not intersect with al
845    */
846   public SequenceI[] getSequencesInOrder(AlignmentI al)
847   {
848     return getSequencesInOrder(al, true);
849   }
850
851   /**
852    * return an array representing the intersection of the group with al,
853    * optionally returning an array the size of al.getHeight() where nulls mark
854    * the non-intersected sequences
855    * 
856    * @param al
857    * @param trim
858    * @return null or array
859    */
860   public SequenceI[] getSequencesInOrder(AlignmentI al, boolean trim)
861   {
862     synchronized (sequences)
863     {
864       int sSize = sequences.size();
865       int alHeight = al.getHeight();
866
867       SequenceI[] seqs = new SequenceI[(trim) ? sSize : alHeight];
868
869       int index = 0;
870       for (int i = 0; i < alHeight && index < sSize; i++)
871       {
872         if (sequences.contains(al.getSequenceAt(i)))
873         {
874           seqs[(trim) ? index : i] = al.getSequenceAt(i);
875           index++;
876         }
877       }
878       if (index == 0)
879       {
880         return null;
881       }
882       if (!trim)
883       {
884         return seqs;
885       }
886       if (index < seqs.length)
887       {
888         SequenceI[] dummy = seqs;
889         seqs = new SequenceI[index];
890         while (--index >= 0)
891         {
892           seqs[index] = dummy[index];
893           dummy[index] = null;
894         }
895       }
896       return seqs;
897     }
898   }
899
900   /**
901    * @return the idColour
902    */
903   public Color getIdColour()
904   {
905     return idColour;
906   }
907
908   /**
909    * @param idColour
910    *          the idColour to set
911    */
912   public void setIdColour(Color idColour)
913   {
914     this.idColour = idColour;
915   }
916
917   /**
918    * @return the representative sequence for this group
919    */
920   @Override
921   public SequenceI getSeqrep()
922   {
923     return seqrep;
924   }
925
926   /**
927    * set the representative sequence for this group. Note - this affects the
928    * interpretation of the Hidereps attribute.
929    * 
930    * @param seqrep
931    *          the seqrep to set (null means no sequence representative)
932    */
933   @Override
934   public void setSeqrep(SequenceI seqrep)
935   {
936     this.seqrep = seqrep;
937   }
938
939   /**
940    * 
941    * @return true if group has a sequence representative
942    */
943   @Override
944   public boolean hasSeqrep()
945   {
946     return seqrep != null;
947   }
948
949   /**
950    * visibility of rows or represented rows covered by group
951    */
952   private boolean hidereps = false;
953
954   /**
955    * set visibility of sequences covered by (if no sequence representative is
956    * defined) or represented by this group.
957    * 
958    * @param visibility
959    */
960   public void setHidereps(boolean visibility)
961   {
962     hidereps = visibility;
963   }
964
965   /**
966    * 
967    * @return true if sequences represented (or covered) by this group should be
968    *         hidden
969    */
970   public boolean isHidereps()
971   {
972     return hidereps;
973   }
974
975   /**
976    * visibility of columns intersecting this group
977    */
978   private boolean hidecols = false;
979
980   /**
981    * set intended visibility of columns covered by this group
982    * 
983    * @param visibility
984    */
985   public void setHideCols(boolean visibility)
986   {
987     hidecols = visibility;
988   }
989
990   /**
991    * 
992    * @return true if columns covered by group should be hidden
993    */
994   public boolean isHideCols()
995   {
996     return hidecols;
997   }
998
999   /**
1000    * create a new sequence group from the intersection of this group with an
1001    * alignment Hashtable of hidden representatives
1002    * 
1003    * @param alignment
1004    *          (may not be null)
1005    * @param map
1006    *          (may be null)
1007    * @return new group containing sequences common to this group and alignment
1008    */
1009   public SequenceGroup intersect(AlignmentI alignment,
1010           Map<SequenceI, SequenceCollectionI> map)
1011   {
1012     SequenceGroup sgroup = new SequenceGroup(this);
1013     SequenceI[] insect = getSequencesInOrder(alignment);
1014     sgroup.sequences = new ArrayList<SequenceI>();
1015     for (int s = 0; insect != null && s < insect.length; s++)
1016     {
1017       if (map == null || map.containsKey(insect[s]))
1018       {
1019         sgroup.sequences.add(insect[s]);
1020       }
1021     }
1022     return sgroup;
1023   }
1024
1025   /**
1026    * @return the showUnconserved
1027    */
1028   public boolean getShowNonconserved()
1029   {
1030     return showNonconserved;
1031   }
1032
1033   /**
1034    * @param showNonconserved
1035    *          the showUnconserved to set
1036    */
1037   public void setShowNonconserved(boolean displayNonconserved)
1038   {
1039     this.showNonconserved = displayNonconserved;
1040   }
1041
1042   AlignmentAnnotation consensus = null, conservation = null;
1043
1044   /**
1045    * flag indicating if consensus histogram should be rendered
1046    */
1047   private boolean showConsensusHistogram;
1048
1049   /**
1050    * set this alignmentAnnotation object as the one used to render consensus
1051    * annotation
1052    * 
1053    * @param aan
1054    */
1055   public void setConsensus(AlignmentAnnotation aan)
1056   {
1057     if (consensus == null)
1058     {
1059       consensus = aan;
1060     }
1061   }
1062
1063   /**
1064    * 
1065    * @return automatically calculated consensus row
1066    */
1067   public AlignmentAnnotation getConsensus()
1068   {
1069     // TODO get or calculate and get consensus annotation row for this group
1070     int aWidth = this.getWidth();
1071     // pointer
1072     // possibility
1073     // here.
1074     if (aWidth < 0)
1075     {
1076       return null;
1077     }
1078     if (consensus == null)
1079     {
1080       consensus = new AlignmentAnnotation("", "", new Annotation[1], 0f,
1081               100f, AlignmentAnnotation.BAR_GRAPH);
1082       consensus.hasText = true;
1083       consensus.autoCalculated = true;
1084       consensus.groupRef = this;
1085       consensus.label = "Consensus for " + getName();
1086       consensus.description = "Percent Identity";
1087     }
1088     return consensus;
1089   }
1090
1091   /**
1092    * set this alignmentAnnotation object as the one used to render consensus
1093    * annotation
1094    * 
1095    * @param aan
1096    */
1097   public void setConservationRow(AlignmentAnnotation aan)
1098   {
1099     if (conservation == null)
1100     {
1101       conservation = aan;
1102     }
1103   }
1104
1105   /**
1106    * get the conservation annotation row for this group
1107    * 
1108    * @return autoCalculated annotation row
1109    */
1110   public AlignmentAnnotation getConservationRow()
1111   {
1112     if (conservation == null)
1113     {
1114       conservation = new AlignmentAnnotation("", "", new Annotation[1], 0f,
1115               11f, AlignmentAnnotation.BAR_GRAPH);
1116     }
1117
1118     conservation.hasText = true;
1119     conservation.autoCalculated = true;
1120     conservation.groupRef = this;
1121     conservation.label = "Conservation for " + getName();
1122     conservation.description = "Conservation for group " + getName()
1123             + " less than " + consPercGaps + "% gaps";
1124     return conservation;
1125   }
1126
1127   /**
1128    * 
1129    * @return true if annotation rows have been instantiated for this group
1130    */
1131   public boolean hasAnnotationRows()
1132   {
1133     return consensus != null || conservation != null;
1134   }
1135
1136   public SequenceI getConsensusSeq()
1137   {
1138     getConsensus();
1139     StringBuffer seqs = new StringBuffer();
1140     for (int i = 0; i < consensus.annotations.length; i++)
1141     {
1142       if (consensus.annotations[i] != null)
1143       {
1144         if (consensus.annotations[i].description.charAt(0) == '[')
1145         {
1146           seqs.append(consensus.annotations[i].description.charAt(1));
1147         }
1148         else
1149         {
1150           seqs.append(consensus.annotations[i].displayCharacter);
1151         }
1152       }
1153     }
1154
1155     SequenceI sq = new Sequence("Group" + getName() + " Consensus",
1156             seqs.toString());
1157     sq.setDescription("Percentage Identity Consensus "
1158             + ((ignoreGapsInConsensus) ? " without gaps" : ""));
1159     return sq;
1160   }
1161
1162   public void setIgnoreGapsConsensus(boolean state)
1163   {
1164     if (this.ignoreGapsInConsensus != state && consensus != null)
1165     {
1166       ignoreGapsInConsensus = state;
1167       recalcConservation();
1168     }
1169     ignoreGapsInConsensus = state;
1170   }
1171
1172   public boolean getIgnoreGapsConsensus()
1173   {
1174     return ignoreGapsInConsensus;
1175   }
1176
1177   /**
1178    * @param showSequenceLogo
1179    *          indicates if a sequence logo is shown for consensus annotation
1180    */
1181   public void setshowSequenceLogo(boolean showSequenceLogo)
1182   {
1183     // TODO: decouple calculation from settings update
1184     if (this.showSequenceLogo != showSequenceLogo && consensus != null)
1185     {
1186       this.showSequenceLogo = showSequenceLogo;
1187       recalcConservation();
1188     }
1189     this.showSequenceLogo = showSequenceLogo;
1190   }
1191
1192   /**
1193    * 
1194    * @param showConsHist
1195    *          flag indicating if the consensus histogram for this group should
1196    *          be rendered
1197    */
1198   public void setShowConsensusHistogram(boolean showConsHist)
1199   {
1200
1201     if (showConsensusHistogram != showConsHist && consensus != null)
1202     {
1203       this.showConsensusHistogram = showConsHist;
1204       recalcConservation();
1205     }
1206     this.showConsensusHistogram = showConsHist;
1207   }
1208
1209   /**
1210    * @return the showConsensusHistogram
1211    */
1212   public boolean isShowConsensusHistogram()
1213   {
1214     return showConsensusHistogram;
1215   }
1216
1217   /**
1218    * set flag indicating if logo should be normalised when rendered
1219    * 
1220    * @param norm
1221    */
1222   public void setNormaliseSequenceLogo(boolean norm)
1223   {
1224     normaliseSequenceLogo = norm;
1225   }
1226
1227   public boolean isNormaliseSequenceLogo()
1228   {
1229     return normaliseSequenceLogo;
1230   }
1231
1232   @Override
1233   /**
1234    * returns a new array with all annotation involving this group
1235    */
1236   public AlignmentAnnotation[] getAlignmentAnnotation()
1237   {
1238     // TODO add in other methods like 'getAlignmentAnnotation(String label),
1239     // etc'
1240     ArrayList<AlignmentAnnotation> annot = new ArrayList<AlignmentAnnotation>();
1241     synchronized (sequences)
1242     {
1243       for (SequenceI seq : sequences)
1244       {
1245         AlignmentAnnotation[] aa = seq.getAnnotation();
1246         if (aa != null)
1247         {
1248           for (AlignmentAnnotation al : aa)
1249           {
1250             if (al.groupRef == this)
1251             {
1252               annot.add(al);
1253             }
1254           }
1255         }
1256       }
1257       if (consensus != null)
1258       {
1259         annot.add(consensus);
1260       }
1261       if (conservation != null)
1262       {
1263         annot.add(conservation);
1264       }
1265     }
1266     return annot.toArray(new AlignmentAnnotation[0]);
1267   }
1268
1269   @Override
1270   public Iterable<AlignmentAnnotation> findAnnotation(String calcId)
1271   {
1272     ArrayList<AlignmentAnnotation> aa = new ArrayList<AlignmentAnnotation>();
1273     for (AlignmentAnnotation a : getAlignmentAnnotation())
1274     {
1275       if (a.getCalcId() == calcId)
1276       {
1277         aa.add(a);
1278       }
1279     }
1280     return aa;
1281   }
1282
1283   /**
1284    * Returns a list of annotations that match the specified sequenceRef, calcId
1285    * and label, ignoring null values.
1286    * 
1287    * @return list of AlignmentAnnotation objects
1288    */
1289   @Override
1290   public Iterable<AlignmentAnnotation> findAnnotations(SequenceI seq,
1291           String calcId, String label)
1292   {
1293     ArrayList<AlignmentAnnotation> aa = new ArrayList<AlignmentAnnotation>();
1294     for (AlignmentAnnotation ann : getAlignmentAnnotation())
1295     {
1296       if (ann.getCalcId() != null && ann.getCalcId().equals(calcId)
1297               && ann.sequenceRef != null && ann.sequenceRef == seq
1298               && ann.label != null && ann.label.equals(label))
1299       {
1300         aa.add(ann);
1301       }
1302     }
1303     return aa;
1304   }
1305
1306   /**
1307    * Answer true if any annotation matches the calcId passed in (if not null).
1308    * 
1309    * @param calcId
1310    * @return
1311    */
1312   public boolean hasAnnotation(String calcId)
1313   {
1314     if (calcId != null && !"".equals(calcId))
1315     {
1316       for (AlignmentAnnotation a : getAlignmentAnnotation())
1317       {
1318         if (a.getCalcId() == calcId)
1319         {
1320           return true;
1321         }
1322       }
1323     }
1324     return false;
1325   }
1326
1327   /**
1328    * Remove all sequences from the group (leaving other properties unchanged).
1329    */
1330   public void clear()
1331   {
1332     synchronized (sequences)
1333     {
1334       sequences.clear();
1335     }
1336   }
1337
1338   private AnnotatedCollectionI context;
1339
1340   /**
1341    * set the alignment or group context for this group
1342    * 
1343    * @param context
1344    */
1345   public void setContext(AnnotatedCollectionI context)
1346   {
1347     this.context = context;
1348   }
1349
1350   /*
1351    * (non-Javadoc)
1352    * 
1353    * @see jalview.datamodel.AnnotatedCollectionI#getContext()
1354    */
1355   @Override
1356   public AnnotatedCollectionI getContext()
1357   {
1358     return context;
1359   }
1360 }