2 * Jalview - A Sequence Alignment Editor and Viewer
\r
3 * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
5 * This program is free software; you can redistribute it and/or
\r
6 * modify it under the terms of the GNU General Public License
\r
7 * as published by the Free Software Foundation; either version 2
\r
8 * of the License, or (at your option) any later version.
\r
10 * This program is distributed in the hope that it will be useful,
\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 * GNU General Public License for more details.
\r
15 * You should have received a copy of the GNU General Public License
\r
16 * along with this program; if not, write to the Free Software
\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
19 package jalview.gui;
\r
21 import jalview.datamodel.*;
\r
23 import jalview.jbgui.*;
\r
26 import java.awt.event.*;
\r
30 import javax.swing.*;
\r
31 import javax.swing.event.*;
\r
38 * @version $Revision$
\r
40 public class Finder extends GFinder
\r
44 JInternalFrame frame;
\r
48 SearchResults searchResults;
\r
51 * Creates a new Finder object.
\r
53 * @param av DOCUMENT ME!
\r
54 * @param ap DOCUMENT ME!
\r
55 * @param f DOCUMENT ME!
\r
57 public Finder(AlignViewport av, AlignmentPanel ap, JInternalFrame f)
\r
63 // all a big pain, but we need to wait until the frame is visible before the textfield can
\r
64 // obtain the focus/////////////////////////
\r
65 frame.addInternalFrameListener(new InternalFrameAdapter()
\r
67 public void internalFrameOpened(InternalFrameEvent evt)
\r
69 SwingUtilities.invokeLater(new Runnable()
\r
73 textfield.requestFocus();
\r
84 * @param e DOCUMENT ME!
\r
86 public void findNext_actionPerformed(ActionEvent e)
\r
94 * @param e DOCUMENT ME!
\r
96 public void findAll_actionPerformed(ActionEvent e)
\r
107 * @param e DOCUMENT ME!
\r
109 public void createNewGroup_actionPerformed(ActionEvent e)
\r
111 JLabel label = new JLabel("Enter name of new sequence feature");
\r
112 JTextField textinput = new JTextField(textfield.getText());
\r
113 JPanel panel = new JPanel(new BorderLayout());
\r
114 panel.add(label, BorderLayout.NORTH);
\r
115 panel.add(textinput, BorderLayout.SOUTH);
\r
117 int reply = JOptionPane.showInternalConfirmDialog(Desktop.desktop,
\r
118 panel, "New Sequence Feature Name",
\r
119 JOptionPane.OK_CANCEL_OPTION );
\r
121 if(reply != JOptionPane.OK_OPTION)
\r
124 for (int i = 0; i < searchResults.getSize(); i ++ )
\r
126 SequenceI seq = searchResults.getResultSequence(i);
\r
128 SequenceFeature sf = new SequenceFeature(textinput.getText(),
\r
129 "Search Results", null,
\r
130 searchResults.getResultStart(i),
\r
131 searchResults.getResultEnd(i),
\r
134 ap.seqPanel.seqCanvas.getFeatureRenderer().addNewFeature(
\r
135 textinput.getText(), new Color(60,160,115),
\r
138 seq.getDatasetSequence().addSequenceFeature(sf);
\r
141 ap.seqPanel.seqCanvas.getFeatureRenderer().findAllFeatures();
\r
142 ap.alignFrame.showSeqFeatures.setSelected(true);
\r
143 av.setShowSequenceFeatures(true);
\r
144 ap.highlightSearchResults(null);
\r
150 * @param findAll DOCUMENT ME!
\r
152 void doSearch(boolean findAll)
\r
154 createNewGroup.setEnabled(false);
\r
156 String searchString = textfield.getText().trim();
\r
157 if(!caseSensitive.isSelected())
\r
158 searchString = searchString.toUpperCase();
\r
160 if(searchString.length()<1)
\r
163 com.stevesoft.pat.Regex regex = new com.stevesoft.pat.Regex(searchString);
\r
165 searchResults = new SearchResults();
\r
168 String item = null;
\r
169 boolean found = false;
\r
171 ////// is the searchString a residue number?
\r
174 int res = Integer.parseInt(searchString);
\r
176 if (av.getSelectionGroup() == null || av.getSelectionGroup().getSize(false) < 1)
\r
178 seq = (Sequence) av.getAlignment().getSequenceAt(0);
\r
182 seq = (Sequence) (av.getSelectionGroup().getSequenceAt(0));
\r
185 searchResults.addResult(seq, res, res);
\r
187 catch (NumberFormatException ex)
\r
191 ///////////////////////////////////////////////
\r
193 int end = av.alignment.getHeight();
\r
195 SequenceGroup selection = av.getSelectionGroup();
\r
197 if (selection != null)
\r
199 if ((selection.getSize(false) < 1) ||
\r
200 ((selection.getEndRes() - selection.getStartRes()) < 2))
\r
206 while (!found && (seqIndex < end))
\r
208 seq = (Sequence) av.alignment.getSequenceAt(seqIndex);
\r
210 if ((selection != null) && !selection.getSequences(false).contains(seq))
\r
218 item = seq.getSequence();
\r
219 if(!caseSensitive.isSelected())
\r
220 item = item.toUpperCase();
\r
222 if ((selection != null) &&
\r
223 (selection.getEndRes() < av.alignment.getWidth()-1))
\r
225 item = item.substring(0, selection.getEndRes() + 1);
\r
228 ///Shall we ignore gaps????
\r
229 StringBuffer noGapsSB = new StringBuffer();
\r
230 int insertCount = 0;
\r
231 Vector spaces = new Vector();
\r
233 for (int j = 0; j < item.length(); j++)
\r
235 if (!jalview.util.Comparison.isGap(item.charAt(j)))
\r
237 noGapsSB.append(item.charAt(j));
\r
238 spaces.add(new Integer(insertCount));
\r
246 String noGaps = noGapsSB.toString();
\r
248 for (int r = resIndex; r < noGaps.length(); r++)
\r
251 if (regex.searchFrom(noGaps, r))
\r
253 resIndex = regex.matchedFrom();
\r
255 if ((selection != null) &&
\r
257 Integer.parseInt(spaces.get(resIndex).toString())) < selection.getStartRes()))
\r
263 int sres = seq.findPosition(resIndex +
\r
264 Integer.parseInt(spaces.elementAt(resIndex)
\r
266 int eres = seq.findPosition(regex.matchedTo() - 1 +
\r
267 Integer.parseInt(spaces.elementAt(regex.matchedTo() -
\r
270 searchResults.addResult(seq, sres, eres);
\r
274 // thats enough, break and display the result
\r
296 Vector idMatch = new Vector();
\r
298 for (int id = 0; id < av.alignment.getHeight(); id++)
\r
300 if (regex.search(av.alignment.getSequenceAt(id).getName()))
\r
302 idMatch.add(av.alignment.getSequenceAt(id));
\r
306 if ((searchResults.getSize() == 0) && (idMatch.size() > 0))
\r
308 ap.idPanel.highlightSearchResults(idMatch);
\r
312 int resultSize = searchResults.getSize();
\r
314 if (searchResults.getSize() > 0)
\r
315 createNewGroup.setEnabled(true);
\r
317 searchResults = null;
\r
319 // if allResults is null, this effectively switches displaySearch flag in seqCanvas
\r
320 ap.highlightSearchResults(searchResults);
\r
322 if(!findAll && resultSize==0)
\r
324 JOptionPane.showInternalMessageDialog(this, "Finished searching",
\r
325 null, JOptionPane.INFORMATION_MESSAGE);
\r
332 String message = resultSize + " matches found.";
\r
333 JOptionPane.showInternalMessageDialog(this, message, null,
\r
334 JOptionPane.INFORMATION_MESSAGE);
\r