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
238 * columns. This method doesn't exclude hidden sequences from the output.
240 * @param selectedRegionOnly
241 * - determines if only the selected region or entire alignment is
245 String[] getViewAsString(boolean selectedRegionOnly);
248 * This method returns the visible alignment as text, as seen on the GUI, ie
249 * if columns are hidden they will not be returned in the result. Use this for
250 * calculating trees, PCA, redundancy etc on views which contain hidden
253 * @param selectedRegionOnly
254 * - determines if only the selected region or entire alignment is
256 * @param isExportHiddenSeqs
257 * - determines if hidden sequences would be exported or not.
261 String[] getViewAsString(boolean selectedRegionOnly, boolean isExportHiddenSeqs);
263 void setSelectionGroup(SequenceGroup sg);
265 char getGapCharacter();
267 void setColumnSelection(ColumnSelection cs);
269 void setConservation(Conservation cons);
272 * get a copy of the currently visible alignment annotation
274 * @param selectedOnly
275 * if true - trim to selected regions on the alignment
276 * @return an empty list or new alignment annotation objects shown only
277 * visible columns trimmed to selected region only
279 List<AlignmentAnnotation> getVisibleAlignmentAnnotation(
280 boolean selectedOnly);
282 FeaturesDisplayedI getFeaturesDisplayed();
284 String getSequenceSetId();
286 boolean areFeaturesDisplayed();
288 void setFeaturesDisplayed(FeaturesDisplayedI featuresDisplayedI);
290 void alignmentChanged(AlignmentViewPanel ap);
293 * @return the padGaps
301 void setPadGaps(boolean padGaps);
304 * return visible region boundaries within given column range
307 * first column (inclusive, from 0)
309 * last column (exclusive)
310 * @return int[][] range of {start,end} visible positions
312 List<int[]> getVisibleRegionBoundaries(int min, int max);
315 * This method returns an array of new SequenceI objects derived from the
316 * whole alignment or just the current selection with start and end points
319 * @note if you need references to the actual SequenceI objects in the
320 * alignment or currently selected then use getSequenceSelection()
321 * @return selection as new sequenceI objects
323 SequenceI[] getSelectionAsNewSequence();
325 void invertColumnSelection();
328 * broadcast selection to any interested parties
330 void sendSelection();
333 * calculate the row position for alignmentIndex if all hidden sequences were
336 * @param alignmentIndex
337 * @return adjusted row position
339 int adjustForHiddenSeqs(int alignmentIndex);
341 boolean hasHiddenRows();
345 * @return a copy of this view's current display settings
347 public ViewStyleI getViewStyle();
350 * update the view's display settings with the given style set
352 * @param settingsForView
354 public void setViewStyle(ViewStyleI settingsForView);
357 * Returns a viewport which holds the cDna for this (protein), or vice versa,
358 * or null if none is set.
362 AlignViewportI getCodingComplement();
365 * Sets the viewport which holds the cDna for this (protein), or vice versa.
366 * Implementation should guarantee that the reciprocal relationship is always
367 * set, i.e. each viewport is the complement of the other.
369 void setCodingComplement(AlignViewportI sl);
372 * Answers true if viewport hosts DNA/RNA, else false.
376 boolean isNucleotide();
379 * Returns an id guaranteed to be unique for this viewport.
386 * Return true if view should scroll to show the highlighted region of a
391 boolean isFollowHighlight();
394 * Set whether view should scroll to show the highlighted region of a sequence
396 void setFollowHighlight(boolean b);
399 public void applyFeaturesStyle(FeatureSettingsModelI featureSettings);