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.
21 package jalview.datamodel;
23 import java.util.BitSet;
24 import java.util.List;
27 * An interface describing the result of a search or other operation which
28 * highlights matched regions of an alignment
30 public interface SearchResultsI
34 * Adds one region to the results
44 SearchResultMatchI addResult(SequenceI seq, int start, int end);
47 * Answers true if the search results include the given sequence (or its
48 * dataset sequence), else false
53 boolean involvesSequence(SequenceI sequence);
56 * Returns an array of [from, to, from, to..] matched columns (base 0) between
57 * the given start and end columns of the given sequence. Returns null if no
58 * matches overlap the specified region.
60 * Implementations should provide an optimised method to return locations to
61 * highlight on a visible portion of an alignment.
65 * first column of range (base 0, inclusive)
67 * last column of range base 0, inclusive)
70 int[] getResults(SequenceI sequence, int start, int end);
73 * Returns the number of matches found
80 * Returns true if no search result matches are held.
87 * Returns the list of matches.
91 List<SearchResultMatchI> getResults();
94 * Set bits in a bitfield for all columns in the given sequence collection
95 * that are highlighted
98 * the set of sequences to search for highlighted regions
101 * @return number of bits set
103 int markColumns(SequenceCollectionI sqcol, BitSet bs);