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.
23 import jalview.analysis.Conservation;
24 import jalview.datamodel.AlignmentAnnotation;
25 import jalview.datamodel.AlignmentI;
26 import jalview.datamodel.AlignmentView;
27 import jalview.datamodel.CigarArray;
28 import jalview.datamodel.ColumnSelection;
29 import jalview.datamodel.SequenceCollectionI;
30 import jalview.datamodel.SequenceGroup;
31 import jalview.datamodel.SequenceI;
32 import jalview.schemes.ColourSchemeI;
34 import java.awt.Color;
35 import java.util.Hashtable;
36 import java.util.List;
43 public interface AlignViewportI extends ViewStyleI
49 * calculate the height for visible annotation, revalidating bounds where
50 * necessary ABSTRACT GUI METHOD
52 * @return total height of annotation
54 public int calcPanelHeight();
56 boolean hasHiddenColumns();
58 boolean isValidCharWidth();
60 boolean isShowConsensusHistogram();
62 boolean isShowSequenceLogo();
64 boolean isNormaliseSequenceLogo();
66 ColourSchemeI getGlobalColourScheme();
68 AlignmentI getAlignment();
70 ColumnSelection getColumnSelection();
72 Hashtable[] getSequenceConsensusHash();
75 * Get consensus data table for the cDNA complement of this alignment (if any)
79 Hashtable[] getComplementConsensusHash();
81 Hashtable[] getRnaStructureConsensusHash();
83 boolean isIgnoreGapsConsensus();
85 boolean isCalculationInProgress(AlignmentAnnotation alignmentAnnotation);
87 AlignmentAnnotation getAlignmentQualityAnnot();
89 AlignmentAnnotation getAlignmentConservationAnnotation();
92 * get the container for alignment consensus annotation
96 AlignmentAnnotation getAlignmentConsensusAnnotation();
99 * get the container for cDNA complement consensus annotation
103 AlignmentAnnotation getComplementConsensusAnnotation();
106 * Test to see if viewport is still open and active
108 * @return true indicates that all references to viewport should be dropped
113 * get the associated calculation thread manager for the view
117 AlignCalcManagerI getCalcManager();
120 * get the percentage gaps allowed in a conservation calculation
123 public int getConsPercGaps();
126 * set the consensus result object for the viewport
130 void setSequenceConsensusHash(Hashtable[] hconsensus);
133 * Set the cDNA complement consensus for the viewport
137 void setComplementConsensusHash(Hashtable[] hconsensus);
141 * @return the alignment annotatino row for the structure consensus
144 AlignmentAnnotation getAlignmentStrucConsensusAnnotation();
147 * set the Rna structure consensus result object for the viewport
149 * @param hStrucConsensus
151 void setRnaStructureConsensusHash(Hashtable[] hStrucConsensus);
154 * set global colourscheme
158 void setGlobalColourScheme(ColourSchemeI rhc);
160 Map<SequenceI, SequenceCollectionI> getHiddenRepSequences();
162 void setHiddenRepSequences(
163 Map<SequenceI, SequenceCollectionI> hiddenRepSequences);
166 * hides or shows dynamic annotation rows based on groups and group and
167 * alignment associated auto-annotation state flags apply the current
168 * group/autoannotation settings to the alignment view. Usually you should
169 * call the AlignmentViewPanel.adjustAnnotationHeight() method afterwards to
170 * ensure the annotation panel bounds are set correctly.
172 * @param applyGlobalSettings
173 * - apply to all autoannotation rows or just the ones associated
174 * with the current visible region
175 * @param preserveNewGroupSettings
176 * - don't apply global settings to groups which don't already have
177 * group associated annotation
179 void updateGroupAnnotationSettings(boolean applyGlobalSettings,
180 boolean preserveNewGroupSettings);
182 void setSequenceColour(SequenceI seq, Color col);
184 Color getSequenceColour(SequenceI seq);
186 void updateSequenceIdColours();
188 SequenceGroup getSelectionGroup();
191 * get the currently selected sequence objects or all the sequences in the
192 * alignment. TODO: change to List<>
194 * @return array of references to sequence objects
196 SequenceI[] getSequenceSelection();
198 void clearSequenceColours();
201 * This method returns the visible alignment as text, as seen on the GUI, ie
202 * if columns are hidden they will not be returned in the result. Use this for
203 * calculating trees, PCA, redundancy etc on views which contain hidden
208 CigarArray getViewAsCigars(boolean selectedRegionOnly);
211 * return a compact representation of the current alignment selection to pass
212 * to an analysis function
214 * @param selectedOnly
215 * boolean true to just return the selected view
216 * @return AlignmentView
218 AlignmentView getAlignmentView(boolean selectedOnly);
221 * return a compact representation of the current alignment selection to pass
222 * to an analysis function
224 * @param selectedOnly
225 * boolean true to just return the selected view
227 * boolean true to annotate the alignment view with groups on the
228 * alignment (and intersecting with selected region if selectedOnly
230 * @return AlignmentView
232 AlignmentView getAlignmentView(boolean selectedOnly, boolean markGroups);
235 * This method returns the visible alignment as text, as seen on the GUI, ie
236 * if columns are hidden they will not be returned in the result. Use this for
237 * calculating trees, PCA, redundancy etc on views which contain hidden
242 String[] getViewAsString(boolean selectedRegionOnly);
244 void setSelectionGroup(SequenceGroup sg);
246 char getGapCharacter();
248 void setColumnSelection(ColumnSelection cs);
250 void setConservation(Conservation cons);
253 * get a copy of the currently visible alignment annotation
254 * @param selectedOnly if true - trim to selected regions on the alignment
255 * @return an empty list or new alignment annotation objects shown only visible columns trimmed to selected region only
257 List<AlignmentAnnotation> getVisibleAlignmentAnnotation(
258 boolean selectedOnly);
260 FeaturesDisplayedI getFeaturesDisplayed();
262 String getSequenceSetId();
264 boolean areFeaturesDisplayed();
266 void setFeaturesDisplayed(FeaturesDisplayedI featuresDisplayedI);
268 void alignmentChanged(AlignmentViewPanel ap);
271 * @return the padGaps
279 void setPadGaps(boolean padGaps);
282 * return visible region boundaries within given column range
285 * first column (inclusive, from 0)
287 * last column (exclusive)
288 * @return int[][] range of {start,end} visible positions
290 List<int[]> getVisibleRegionBoundaries(int min, int max);
293 * This method returns an array of new SequenceI objects derived from the
294 * whole alignment or just the current selection with start and end points
297 * @note if you need references to the actual SequenceI objects in the
298 * alignment or currently selected then use getSequenceSelection()
299 * @return selection as new sequenceI objects
301 SequenceI[] getSelectionAsNewSequence();
303 void invertColumnSelection();
306 * broadcast selection to any interested parties
308 void sendSelection();
311 * calculate the row position for alignmentIndex if all hidden sequences were
314 * @param alignmentIndex
315 * @return adjusted row position
317 int adjustForHiddenSeqs(int alignmentIndex);
319 boolean hasHiddenRows();
323 * @return a copy of this view's current display settings
325 public ViewStyleI getViewStyle();
328 * update the view's display settings with the given style set
330 * @param settingsForView
332 public void setViewStyle(ViewStyleI settingsForView);
335 * Returns a viewport which holds the cDna for this (protein), or vice versa,
336 * or null if none is set.
340 AlignViewportI getCodingComplement();
343 * Sets the viewport which holds the cDna for this (protein), or vice versa.
344 * Implementation should guarantee that the reciprocal relationship is always
345 * set, i.e. each viewport is the complement of the other.
347 void setCodingComplement(AlignViewportI sl);
350 * Answers true if viewport hosts DNA/RNA, else false.
354 boolean isNucleotide();
357 * Returns an id guaranteed to be unique for this viewport.
364 * Return true if view should scroll to show the highlighted region of a
369 boolean isFollowHighlight();
372 * Set whether view should scroll to show the highlighted region of a sequence
374 void setFollowHighlight(boolean b);