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.ProfilesI;
30 import jalview.datamodel.SearchResultsI;
31 import jalview.datamodel.SequenceCollectionI;
32 import jalview.datamodel.SequenceGroup;
33 import jalview.datamodel.SequenceI;
34 import jalview.renderer.ResidueShaderI;
35 import jalview.schemes.ColourSchemeI;
37 import java.awt.Color;
38 import java.util.Hashtable;
39 import java.util.List;
46 public interface AlignViewportI extends ViewStyleI
52 * calculate the height for visible annotation, revalidating bounds where
53 * necessary ABSTRACT GUI METHOD
55 * @return total height of annotation
57 public int calcPanelHeight();
60 * Answers true if the viewport has at least one column selected
64 boolean hasSelectedColumns();
67 * Answers true if the viewport has at least one hidden column
71 boolean hasHiddenColumns();
73 boolean isValidCharWidth();
75 boolean isShowConsensusHistogram();
77 boolean isShowSequenceLogo();
79 boolean isNormaliseSequenceLogo();
81 ColourSchemeI getGlobalColourScheme();
84 * Returns an object that describes colouring (including any thresholding or
85 * fading) of the alignment
89 ResidueShaderI getResidueShading();
91 AlignmentI getAlignment();
93 ColumnSelection getColumnSelection();
95 ProfilesI getSequenceConsensusHash();
98 * Get consensus data table for the cDNA complement of this alignment (if any)
102 Hashtable[] getComplementConsensusHash();
104 Hashtable[] getRnaStructureConsensusHash();
106 boolean isIgnoreGapsConsensus();
108 boolean isCalculationInProgress(AlignmentAnnotation alignmentAnnotation);
110 AlignmentAnnotation getAlignmentQualityAnnot();
112 AlignmentAnnotation getAlignmentConservationAnnotation();
115 * get the container for alignment consensus annotation
119 AlignmentAnnotation getAlignmentConsensusAnnotation();
122 * get the container for cDNA complement consensus annotation
126 AlignmentAnnotation getComplementConsensusAnnotation();
129 * Test to see if viewport is still open and active
131 * @return true indicates that all references to viewport should be dropped
136 * Dispose of all references or resources held by the viewport
141 * get the associated calculation thread manager for the view
145 AlignCalcManagerI getCalcManager();
148 * get the percentage gaps allowed in a conservation calculation
151 public int getConsPercGaps();
154 * set the consensus result object for the viewport
158 void setSequenceConsensusHash(ProfilesI hconsensus);
161 * Set the cDNA complement consensus for the viewport
165 void setComplementConsensusHash(Hashtable[] hconsensus);
169 * @return the alignment annotation row for the structure consensus
172 AlignmentAnnotation getAlignmentStrucConsensusAnnotation();
175 * set the Rna structure consensus result object for the viewport
177 * @param hStrucConsensus
179 void setRnaStructureConsensusHash(Hashtable[] hStrucConsensus);
182 * Sets the colour scheme for the background alignment (as distinct from
183 * sub-groups, which may have their own colour schemes). A null value is used
184 * for no residue colour (white).
188 void setGlobalColourScheme(ColourSchemeI cs);
190 Map<SequenceI, SequenceCollectionI> getHiddenRepSequences();
192 void setHiddenRepSequences(
193 Map<SequenceI, SequenceCollectionI> hiddenRepSequences);
196 * hides or shows dynamic annotation rows based on groups and group and
197 * alignment associated auto-annotation state flags apply the current
198 * group/autoannotation settings to the alignment view. Usually you should
199 * call the AlignmentViewPanel.adjustAnnotationHeight() method afterwards to
200 * ensure the annotation panel bounds are set correctly.
202 * @param applyGlobalSettings
203 * - apply to all autoannotation rows or just the ones associated
204 * with the current visible region
205 * @param preserveNewGroupSettings
206 * - don't apply global settings to groups which don't already have
207 * group associated annotation
209 void updateGroupAnnotationSettings(boolean applyGlobalSettings,
210 boolean preserveNewGroupSettings);
212 void setSequenceColour(SequenceI seq, Color col);
214 Color getSequenceColour(SequenceI seq);
216 void updateSequenceIdColours();
218 SequenceGroup getSelectionGroup();
221 * get the currently selected sequence objects or all the sequences in the
222 * alignment. TODO: change to List<>
224 * @return array of references to sequence objects
226 SequenceI[] getSequenceSelection();
228 void clearSequenceColours();
231 * This method returns the visible alignment as text, as seen on the GUI, ie
232 * if columns are hidden they will not be returned in the result. Use this for
233 * calculating trees, PCA, redundancy etc on views which contain hidden
238 CigarArray getViewAsCigars(boolean selectedRegionOnly);
241 * return a compact representation of the current alignment selection to pass
242 * to an analysis function
244 * @param selectedOnly
245 * boolean true to just return the selected view
246 * @return AlignmentView
248 AlignmentView getAlignmentView(boolean selectedOnly);
251 * return a compact representation of the current alignment selection to pass
252 * to an analysis function
254 * @param selectedOnly
255 * boolean true to just return the selected view
257 * boolean true to annotate the alignment view with groups on the
258 * alignment (and intersecting with selected region if selectedOnly
260 * @return AlignmentView
262 AlignmentView getAlignmentView(boolean selectedOnly, boolean markGroups);
265 * This method returns the visible alignment as text, as seen on the GUI, ie
266 * if columns are hidden they will not be returned in the result. Use this for
267 * calculating trees, PCA, redundancy etc on views which contain hidden
268 * columns. This method doesn't exclude hidden sequences from the output.
270 * @param selectedRegionOnly
271 * - determines if only the selected region or entire alignment is
275 String[] getViewAsString(boolean selectedRegionOnly);
278 * This method returns the visible alignment as text, as seen on the GUI, ie
279 * if columns are hidden they will not be returned in the result. Use this for
280 * calculating trees, PCA, redundancy etc on views which contain hidden
283 * @param selectedRegionOnly
284 * - determines if only the selected region or entire alignment is
286 * @param isExportHiddenSeqs
287 * - determines if hidden sequences would be exported or not.
291 String[] getViewAsString(boolean selectedRegionOnly,
292 boolean isExportHiddenSeqs);
294 void setSelectionGroup(SequenceGroup sg);
296 char getGapCharacter();
298 void setColumnSelection(ColumnSelection cs);
300 void setConservation(Conservation cons);
303 * get a copy of the currently visible alignment annotation
305 * @param selectedOnly
306 * if true - trim to selected regions on the alignment
307 * @return an empty list or new alignment annotation objects shown only
308 * visible columns trimmed to selected region only
310 List<AlignmentAnnotation> getVisibleAlignmentAnnotation(
311 boolean selectedOnly);
313 FeaturesDisplayedI getFeaturesDisplayed();
315 String getSequenceSetId();
317 boolean areFeaturesDisplayed();
319 void setFeaturesDisplayed(FeaturesDisplayedI featuresDisplayedI);
321 void alignmentChanged(AlignmentViewPanel ap);
324 * @return the padGaps
332 void setPadGaps(boolean padGaps);
335 * return visible region boundaries within given column range
338 * first column (inclusive, from 0)
340 * last column (exclusive)
341 * @return int[][] range of {start,end} visible positions
343 List<int[]> getVisibleRegionBoundaries(int min, int max);
346 * This method returns an array of new SequenceI objects derived from the
347 * whole alignment or just the current selection with start and end points
350 * @note if you need references to the actual SequenceI objects in the
351 * alignment or currently selected then use getSequenceSelection()
352 * @return selection as new sequenceI objects
354 SequenceI[] getSelectionAsNewSequence();
356 void invertColumnSelection();
359 * broadcast selection to any interested parties
361 void sendSelection();
364 * calculate the row position for alignmentIndex if all hidden sequences were
367 * @param alignmentIndex
368 * @return adjusted row position
370 int adjustForHiddenSeqs(int alignmentIndex);
372 boolean hasHiddenRows();
376 * @return a copy of this view's current display settings
378 public ViewStyleI getViewStyle();
381 * update the view's display settings with the given style set
383 * @param settingsForView
385 public void setViewStyle(ViewStyleI settingsForView);
388 * Returns a viewport which holds the cDna for this (protein), or vice versa,
389 * or null if none is set.
393 AlignViewportI getCodingComplement();
396 * Sets the viewport which holds the cDna for this (protein), or vice versa.
397 * Implementation should guarantee that the reciprocal relationship is always
398 * set, i.e. each viewport is the complement of the other.
400 void setCodingComplement(AlignViewportI sl);
403 * Answers true if viewport hosts DNA/RNA, else false.
407 boolean isNucleotide();
410 * Returns an id guaranteed to be unique for this viewport.
417 * Return true if view should scroll to show the highlighted region of a
422 boolean isFollowHighlight();
425 * Set whether view should scroll to show the highlighted region of a sequence
427 void setFollowHighlight(boolean b);
429 public void applyFeaturesStyle(FeatureSettingsModelI featureSettings);
432 * check if current selection group is defined on the view, or is simply a
435 * @return true if group is defined on the alignment
437 boolean isSelectionDefinedGroup();
441 * @return true if there are search results on the view
443 boolean hasSearchResults();
446 * set the search results for the view
449 * - or null to clear current results
451 void setSearchResults(SearchResultsI results);
454 * get search results for this view (if any)
456 * @return search results or null
458 SearchResultsI getSearchResults();