X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FSequenceGroup.java;h=c42a9559e7014dcfedeff15cb4d6ecb4cebdbde7;hb=323663120848253cb367f13d7e470790ec451219;hp=6bee4167fa15f0f8bba1dbbc0b4e5cfdeaf4b499;hpb=bbfdb203ce3a889600caa52478478b75ab03809f;p=jalview.git diff --git a/src/jalview/datamodel/SequenceGroup.java b/src/jalview/datamodel/SequenceGroup.java index 6bee416..c42a955 100755 --- a/src/jalview/datamodel/SequenceGroup.java +++ b/src/jalview/datamodel/SequenceGroup.java @@ -1,13 +1,13 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) - * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle + * 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 @@ -18,6 +18,7 @@ package jalview.datamodel; import java.util.*; +import java.util.List; import java.awt.*; @@ -30,7 +31,7 @@ import jalview.schemes.*; * @author $author$ * @version $Revision$ */ -public class SequenceGroup +public class SequenceGroup implements AnnotatedCollectionI { String groupName; @@ -54,7 +55,7 @@ public class SequenceGroup /** * group members */ - private Vector sequences = new Vector(); + private Vector sequences = new Vector(); /** * representative sequence for this group (if any) @@ -91,12 +92,12 @@ public class SequenceGroup * consensus calculation property */ private boolean showSequenceLogo = false; + /** * flag indicating if logo should be rendered normalised */ private boolean normaliseSequenceLogo; - /** * @return the includeAllConsSymbols */ @@ -152,7 +153,7 @@ public class SequenceGroup if (seqsel != null) { sequences = new Vector(); - Enumeration sq = seqsel.sequences.elements(); + Enumeration sq = seqsel.sequences.elements(); while (sq.hasMoreElements()) { sequences.addElement(sq.nextElement()); @@ -285,7 +286,13 @@ public class SequenceGroup return eres; } - public Vector getSequences(Hashtable hiddenReps) + public List getSequences() + { + return sequences; + } + + public List getSequences( + Map hiddenReps) { if (hiddenReps == null) { @@ -294,17 +301,16 @@ public class SequenceGroup else { Vector allSequences = new Vector(); - SequenceI seq, seq2; + SequenceI seq; for (int i = 0; i < sequences.size(); i++) { seq = (SequenceI) sequences.elementAt(i); allSequences.addElement(seq); if (hiddenReps.containsKey(seq)) { - SequenceGroup hsg = (SequenceGroup) hiddenReps.get(seq); - for (int h = 0; h < hsg.getSize(); h++) + SequenceCollectionI hsg = hiddenReps.get(seq); + for (SequenceI seq2 : hsg.getSequences()) { - seq2 = hsg.getSequenceAt(h); if (seq2 != seq && !allSequences.contains(seq2)) { allSequences.addElement(seq2); @@ -317,20 +323,15 @@ public class SequenceGroup } } - public SequenceI[] getSequencesAsArray(Hashtable hiddenReps) + public SequenceI[] getSequencesAsArray( + Map map) { - Vector tmp = getSequences(hiddenReps); + List tmp = getSequences(map); if (tmp == null) { return null; } - SequenceI[] result = new SequenceI[tmp.size()]; - for (int i = 0; i < result.length; i++) - { - result[i] = (SequenceI) tmp.elementAt(i); - } - - return result; + return tmp.toArray(new SequenceI[tmp.size()]); } /** @@ -482,7 +483,10 @@ public class SequenceGroup { return; } - + if (cs != null) + { + cs.alignmentChanged(this, null); + } try { Hashtable cnsns[] = AAFrequency.calculate(sequences, startRes, @@ -494,11 +498,7 @@ public class SequenceGroup if (cs != null) { cs.setConsensus(cnsns); - - if (cs instanceof ClustalxColourScheme) - { - ((ClustalxColourScheme) cs).resetClustalX(sequences, getWidth()); - } + cs.alignmentChanged(this, null); } if ((conservation != null) @@ -518,12 +518,7 @@ public class SequenceGroup if (cs.conservationApplied()) { cs.setConservation(c); - - if (cs instanceof ClustalxColourScheme) - { - ((ClustalxColourScheme) cs).resetClustalX(sequences, - getWidth()); - } + cs.alignmentChanged(this, null); } } } @@ -953,18 +948,19 @@ public class SequenceGroup * * @param alignment * (may not be null) - * @param hashtable + * @param map * (may be null) * @return new group containing sequences common to this group and alignment */ - public SequenceGroup intersect(AlignmentI alignment, Hashtable hashtable) + public SequenceGroup intersect(AlignmentI alignment, + Map map) { SequenceGroup sgroup = new SequenceGroup(this); SequenceI[] insect = getSequencesInOrder(alignment); sgroup.sequences = new Vector(); for (int s = 0; insect != null && s < insect.length; s++) { - if (hashtable == null || hashtable.containsKey(insect[s])) + if (map == null || map.containsKey(insect[s])) { sgroup.sequences.addElement(insect[s]); } @@ -1175,14 +1171,65 @@ public class SequenceGroup /** * set flag indicating if logo should be normalised when rendered + * * @param norm */ public void setNormaliseSequenceLogo(boolean norm) { - normaliseSequenceLogo=norm; + normaliseSequenceLogo = norm; } + public boolean isNormaliseSequenceLogo() { return normaliseSequenceLogo; } + + @Override + /** + * returns a new array with all annotation involving this group + */ + public AlignmentAnnotation[] getAlignmentAnnotation() + { + // TODO add in other methods like 'getAlignmentAnnotation(String label), + // etc' + ArrayList annot = new ArrayList(); + for (SequenceI seq : (Vector) sequences) + { + for (AlignmentAnnotation al : seq.getAnnotation()) + { + if (al.groupRef == this) + { + annot.add(al); + } + } + } + if (consensus != null) + { + annot.add(consensus); + } + if (conservation != null) + { + annot.add(conservation); + } + return annot.toArray(new AlignmentAnnotation[0]); + } + + @Override + public Iterable findAnnotation(String calcId) + { + ArrayList aa = new ArrayList(); + for (AlignmentAnnotation a : getAlignmentAnnotation()) + { + if (a.getCalcId() == calcId) + { + aa.add(a); + } + } + return aa; + } + + public void clear() + { + sequences.clear(); + } }