X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FAlignViewport.java;h=d0c5674e257ae8ff0acf41bc53e81faf0953f863;hb=caf13e6a9dc82023cd8648420201e5ad60ce0393;hp=eedc8637a906cbebedf5954e85bad31a334e463f;hpb=b76d0ffcb6effa94954f75e030d1d67c890134eb;p=jalview.git diff --git a/src/jalview/gui/AlignViewport.java b/src/jalview/gui/AlignViewport.java index eedc863..d0c5674 100755 --- a/src/jalview/gui/AlignViewport.java +++ b/src/jalview/gui/AlignViewport.java @@ -1,5 +1,5 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.5) + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6) * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle * * This file is part of Jalview. @@ -48,6 +48,7 @@ import jalview.datamodel.*; import jalview.schemes.*; import jalview.structure.SelectionSource; import jalview.structure.StructureSelectionManager; +import jalview.structure.VamsasSource; /** * DOCUMENT ME! @@ -55,7 +56,7 @@ import jalview.structure.StructureSelectionManager; * @author $author$ * @version $Revision$ */ -public class AlignViewport implements SelectionSource +public class AlignViewport implements SelectionSource, VamsasSource { private static final int RIGHT_JUSTIFY = 1; @@ -539,12 +540,14 @@ public class AlignViewport implements SelectionSource try { - int aWidth = (alignment != null) ? alignment.getWidth() : 0; // null + int aWidth = (alignment != null) ? alignment.getWidth() : -1; // null // pointer // possibility // here. - if (aWidth < 0) + if (aWidth <= 0) { + updatingConsensus = false; + UPDATING_CONSENSUS = false; return; } @@ -552,8 +555,8 @@ public class AlignViewport implements SelectionSource consensus.annotations = new Annotation[aWidth]; hconsensus = new Hashtable[aWidth]; - AAFrequency.calculate(alignment.getSequencesArray(), 0, alignment - .getWidth(), hconsensus, true); + AAFrequency.calculate(alignment.getSequencesArray(), 0, + alignment.getWidth(), hconsensus, true); updateAnnotation(true); if (globalColourScheme != null) @@ -589,7 +592,8 @@ public class AlignViewport implements SelectionSource protected void updateAnnotation(boolean immediate) { - // TODO: make calls thread-safe, so if another thread calls this method, it will either return or wait until one calculation is finished. + // TODO: make calls thread-safe, so if another thread calls this method, + // it will either return or wait until one calculation is finished. if (immediate || (!updatingConsensus && consensus != null && hconsensus != null)) { @@ -1562,90 +1566,7 @@ public class AlignViewport implements SelectionSource public jalview.datamodel.CigarArray getViewAsCigars( boolean selectedRegionOnly) { - CigarArray selection = null; - SequenceI[] seqs = null; - int i, iSize; - int start = 0, end = 0; - if (selectedRegionOnly && selectionGroup != null) - { - iSize = selectionGroup.getSize(); - seqs = selectionGroup.getSequencesInOrder(alignment); - start = selectionGroup.getStartRes(); - end = selectionGroup.getEndRes(); // inclusive for start and end in - // SeqCigar constructor - } - else - { - iSize = alignment.getHeight(); - seqs = alignment.getSequencesArray(); - end = alignment.getWidth() - 1; - } - SeqCigar[] selseqs = new SeqCigar[iSize]; - for (i = 0; i < iSize; i++) - { - selseqs[i] = new SeqCigar(seqs[i], start, end); - } - selection = new CigarArray(selseqs); - // now construct the CigarArray operations - if (hasHiddenColumns) - { - Vector regions = colSel.getHiddenColumns(); - int[] region; - int hideStart, hideEnd; - int last = start; - for (int j = 0; last < end & j < regions.size(); j++) - { - region = (int[]) regions.elementAt(j); - hideStart = region[0]; - hideEnd = region[1]; - // edit hidden regions to selection range - if (hideStart < last) - { - if (hideEnd > last) - { - hideStart = last; - } - else - { - continue; - } - } - - if (hideStart > end) - { - break; - } - - if (hideEnd > end) - { - hideEnd = end; - } - - if (hideStart > hideEnd) - { - break; - } - /** - * form operations... - */ - if (last < hideStart) - { - selection.addOperation(CigarArray.M, hideStart - last); - } - selection.addOperation(CigarArray.D, 1 + hideEnd - hideStart); - last = hideEnd + 1; - } - // Final match if necessary. - if (last < end) - { - selection.addOperation(CigarArray.M, end - last + 1); - } - } - else - { - selection.addOperation(CigarArray.M, end - start + 1); - } - return selection; + return new jalview.datamodel.CigarArray(alignment, (hasHiddenColumns ? colSel : null), (selectedRegionOnly ? selectionGroup : null)); } /** @@ -1656,21 +1577,24 @@ public class AlignViewport implements SelectionSource * boolean true to just return the selected view * @return AlignmentView */ - jalview.datamodel.AlignmentView getAlignmentView(boolean selectedOnly) + public jalview.datamodel.AlignmentView getAlignmentView(boolean selectedOnly) { - // JBPNote: - // this is here because the AlignmentView constructor modifies the - // CigarArray - // object. Refactoring of Cigar and alignment view representation should - // be done to remove redundancy. - CigarArray aligview = getViewAsCigars(selectedOnly); - if (aligview != null) - { - return new AlignmentView(aligview, - (selectedOnly && selectionGroup != null) ? selectionGroup - .getStartRes() : 0); - } - return null; + return getAlignmentView(selectedOnly, false); + } + + /** + * return a compact representation of the current alignment selection to pass + * to an analysis function + * + * @param selectedOnly + * boolean true to just return the selected view + * @param markGroups + * boolean true to annotate the alignment view with groups on the alignment (and intersecting with selected region if selectedOnly is true) + * @return AlignmentView + */ + public jalview.datamodel.AlignmentView getAlignmentView(boolean selectedOnly, boolean markGroups) + { + return new AlignmentView(alignment, colSel, selectionGroup, hasHiddenColumns, selectedOnly, markGroups); } /** @@ -1852,8 +1776,8 @@ public class AlignViewport implements SelectionSource { Alignment al = (Alignment) alignment; Conservation c = new Conservation("All", - ResidueProperties.propHash, 3, al.getSequences(), 0, al - .getWidth() - 1); + ResidueProperties.propHash, 3, al.getSequences(), 0, + al.getWidth() - 1); c.calculate(); c.verdict(false, ConsPercGaps); @@ -1867,8 +1791,8 @@ public class AlignViewport implements SelectionSource SequenceGroup sg = (SequenceGroup) alignment.getGroups().elementAt(s); if (sg.cs != null && sg.cs instanceof ClustalxColourScheme) { - ((ClustalxColourScheme) sg.cs).resetClustalX(sg - .getSequences(hiddenRepSequences), sg.getWidth()); + ((ClustalxColourScheme) sg.cs).resetClustalX( + sg.getSequences(hiddenRepSequences), sg.getWidth()); } sg.recalcConservation(); }