2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
3 * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
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 of the License, or (at your option) any later version.
11 * Jalview is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
18 package jalview.appletgui;
23 import java.awt.event.*;
25 import jalview.analysis.AlignSeq;
26 import jalview.commands.*;
27 import jalview.datamodel.*;
29 public class RedundancyPanel extends SliderPanel implements Runnable,
32 Stack historyList = new Stack(); // simpler than synching with alignFrame.
36 SequenceI[] originalSequences;
42 public RedundancyPanel(AlignmentPanel ap)
44 super(ap, 0, false, null);
46 redundantSeqs = new Vector();
48 undoButton.setVisible(true);
49 applyButton.setVisible(true);
50 allGroupsCheck.setVisible(false);
52 label.setText("Enter the redundancy threshold");
53 valueField.setText("100");
55 slider.setVisibleAmount(1);
57 slider.setMaximum(100 + slider.getVisibleAmount());
60 slider.addAdjustmentListener(new AdjustmentListener()
62 public void adjustmentValueChanged(AdjustmentEvent evt)
64 valueField.setText(slider.getValue() + "");
71 jalview.bin.JalviewLite.addFrame(frame,
72 "Redundancy threshold selection", 400, 100);
74 frame.addWindowListener(this);
76 Thread worker = new Thread(this);
81 * This is a copy of remove redundancy in jalivew.datamodel.Alignment except
82 * we dont want to remove redundancy, just calculate once so we can use the
83 * slider to dynamically hide redundant sequences
90 * @return DOCUMENT ME!
94 label.setText("Calculating....");
96 slider.setVisible(false);
97 applyButton.setEnabled(false);
98 valueField.setVisible(false);
102 String[] omitHidden = null;
104 SequenceGroup sg = ap.av.getSelectionGroup();
109 if ((sg != null) && (sg.getSize() >= 1))
111 originalSequences = sg.getSequencesInOrder(ap.av.getAlignment());
112 start = sg.getStartRes();
113 end = sg.getEndRes();
117 originalSequences = ap.av.getAlignment().getSequencesArray();
119 end = ap.av.getAlignment().getWidth();
122 height = originalSequences.length;
124 redundancy = AlignSeq.computeRedundancyMatrix(originalSequences,
125 omitHidden, start, end, false);
126 label.setText("Enter the redundancy threshold");
127 slider.setVisible(true);
128 applyButton.setEnabled(true);
129 valueField.setVisible(true);
132 // System.out.println("blob done "+ (System.currentTimeMillis()-start));
135 void sliderValueChanged()
137 if (redundancy == null)
142 float value = slider.getValue();
144 for (int i = 0; i < redundancy.length; i++)
146 if (value > redundancy[i])
148 redundantSeqs.removeElement(originalSequences[i]);
150 else if (!redundantSeqs.contains(originalSequences[i]))
152 redundantSeqs.addElement(originalSequences[i]);
156 ap.idPanel.idCanvas.setHighlighted(redundantSeqs);
157 PaintRefresher.Refresh(this, ap.av.getSequenceSetId(), true, true);
161 public void applyButton_actionPerformed()
163 Vector del = new Vector();
165 undoButton.setEnabled(true);
167 float value = slider.getValue();
168 SequenceGroup sg = ap.av.getSelectionGroup();
170 for (int i = 0; i < redundancy.length; i++)
172 if (value <= redundancy[i])
174 del.addElement(originalSequences[i]);
178 // This has to be done before the restoreHistoryItem method of alignFrame
180 // actually restore these sequences.
183 SequenceI[] deleted = new SequenceI[del.size()];
186 for (int i = 0; i < del.size(); i++)
188 deleted[i] = (SequenceI) del.elementAt(i);
189 if (deleted[i].getLength() > width)
191 width = deleted[i].getLength();
195 EditCommand cut = new EditCommand("Remove Redundancy",
196 EditCommand.CUT, deleted, 0, width, ap.av.getAlignment());
197 AlignmentI alignment = ap.av.getAlignment();
198 for (int i = 0; i < del.size(); i++)
200 alignment.deleteSequence(deleted[i]);
203 sg.deleteSequence(deleted[i], false);
207 historyList.push(cut);
209 ap.alignFrame.addHistoryItem(cut);
211 PaintRefresher.Refresh(this, ap.av.getSequenceSetId(), true, true);
212 // ap.av.firePropertyChange("alignment", null, ap.av.getAlignment()
218 public void undoButton_actionPerformed()
220 CommandI command = (CommandI) historyList.pop();
221 command.undoCommand(null);
223 if (ap.av.historyList.contains(command))
225 ap.av.historyList.removeElement(command);
226 ap.alignFrame.updateEditMenuBar();
229 ap.paintAlignment(true);
231 if (historyList.size() == 0)
233 undoButton.setEnabled(false);
237 public void valueField_actionPerformed(ActionEvent e)
241 int i = Integer.parseInt(valueField.getText());
243 } catch (Exception ex)
245 valueField.setText(slider.getValue() + "");
249 public void windowOpened(WindowEvent evt)
253 public void windowClosing(WindowEvent evt)
255 ap.idPanel.idCanvas.setHighlighted(null);
258 public void windowClosed(WindowEvent evt)
262 public void windowActivated(WindowEvent evt)
266 public void windowDeactivated(WindowEvent evt)
270 public void windowIconified(WindowEvent evt)
274 public void windowDeiconified(WindowEvent evt)