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.AlignSeq;
24 import jalview.commands.CommandI;
25 import jalview.commands.EditCommand;
26 import jalview.commands.EditCommand.Action;
27 import jalview.datamodel.SequenceGroup;
28 import jalview.datamodel.SequenceI;
29 import jalview.jbgui.GSliderPanel;
30 import jalview.util.MessageManager;
32 import java.awt.event.ActionEvent;
33 import java.util.ArrayList;
34 import java.util.List;
35 import java.util.Stack;
36 import java.util.Vector;
38 import javax.swing.JInternalFrame;
39 import javax.swing.JProgressBar;
40 import javax.swing.event.ChangeEvent;
41 import javax.swing.event.ChangeListener;
42 import javax.swing.event.InternalFrameAdapter;
43 import javax.swing.event.InternalFrameEvent;
51 public class RedundancyPanel extends GSliderPanel implements Runnable
57 Stack<CommandI> historyList = new Stack<>();
59 // simpler than synching with alignFrame.
63 SequenceI[] originalSequences;
70 * Creates a new RedundancyPanel object.
77 public RedundancyPanel(final AlignmentPanel ap, AlignFrame af)
81 redundantSeqs = new Vector();
83 slider.addChangeListener(new ChangeListener()
86 public void stateChanged(ChangeEvent evt)
88 valueField.setText(slider.getValue() + "");
93 applyButton.setText(MessageManager.getString("action.remove"));
94 allGroupsCheck.setVisible(false);
96 slider.setMaximum(100);
99 Thread worker = new Thread(this);
102 frame = new JInternalFrame();
103 frame.setContentPane(this);
104 Desktop.addInternalFrame(frame,
106 .getString("label.redundancy_threshold_selection"),
108 frame.addInternalFrameListener(new InternalFrameAdapter()
111 public void internalFrameClosing(InternalFrameEvent evt)
113 ap.getIdPanel().getIdCanvas().setHighlighted(null);
120 * This is a copy of remove redundancy in jalivew.datamodel.Alignment except
121 * we dont want to remove redundancy, just calculate once so we can use the
122 * slider to dynamically hide redundant sequences
129 * @return DOCUMENT ME!
134 JProgressBar progress = new JProgressBar();
135 progress.setIndeterminate(true);
136 southPanel.add(progress, java.awt.BorderLayout.SOUTH);
138 label.setText(MessageManager.getString("label.calculating"));
140 slider.setVisible(false);
141 applyButton.setEnabled(false);
142 valueField.setVisible(false);
146 String[] omitHidden = null;
148 SequenceGroup sg = ap.av.getSelectionGroup();
153 if ((sg != null) && (sg.getSize() >= 1))
155 originalSequences = sg.getSequencesInOrder(ap.av.getAlignment());
156 start = sg.getStartRes();
157 end = sg.getEndRes();
161 originalSequences = ap.av.getAlignment().getSequencesArray();
163 end = ap.av.getAlignment().getWidth();
166 height = originalSequences.length;
167 if (ap.av.hasHiddenColumns())
169 omitHidden = ap.av.getViewAsString(sg != null);
171 redundancy = AlignSeq.computeRedundancyMatrix(originalSequences,
172 omitHidden, start, end, false);
174 progress.setIndeterminate(false);
175 progress.setVisible(false);
179 MessageManager.getString("label.enter_redundancy_threshold"));
180 slider.setVisible(true);
181 applyButton.setEnabled(true);
182 valueField.setVisible(true);
185 sliderValueChanged();
186 // System.out.println((System.currentTimeMillis()-start));
189 void sliderValueChanged()
191 if (redundancy == null)
196 float value = slider.getValue();
197 List<SequenceI> redundantSequences = new ArrayList<>();
198 for (int i = 0; i < redundancy.length; i++)
200 if (value <= redundancy[i])
202 redundantSequences.add(originalSequences[i]);
205 ap.getIdPanel().getIdCanvas().setHighlighted(redundantSequences);
215 public void applyButton_actionPerformed(ActionEvent e)
217 Vector del = new Vector();
219 undoButton.setEnabled(true);
221 float value = slider.getValue();
222 SequenceGroup sg = ap.av.getSelectionGroup();
224 for (int i = 0; i < redundancy.length; i++)
226 if (value <= redundancy[i])
228 del.addElement(originalSequences[i]);
232 // This has to be done before the restoreHistoryItem method of alignFrame
234 // actually restore these sequences.
237 SequenceI[] deleted = new SequenceI[del.size()];
240 for (int i = 0; i < del.size(); i++)
242 deleted[i] = (SequenceI) del.elementAt(i);
243 if (deleted[i].getLength() > width)
245 width = deleted[i].getLength();
249 EditCommand cut = new EditCommand(
250 MessageManager.getString("action.remove_redundancy"),
251 Action.CUT, deleted, 0, width, ap.av.getAlignment());
253 for (int i = 0; i < del.size(); i++)
255 ap.av.getAlignment().deleteSequence(deleted[i]);
258 sg.deleteSequence(deleted[i], false);
262 historyList.push(cut);
264 ap.alignFrame.addHistoryItem(cut);
266 PaintRefresher.Refresh(this, ap.av.getSequenceSetId(), true, true);
267 ap.av.firePropertyChange("alignment", null,
268 ap.av.getAlignment().getSequences());
280 public void undoButton_actionPerformed(ActionEvent e)
282 if (historyList == null || historyList.isEmpty())
284 undoButton.setEnabled(false);
288 CommandI command = historyList.pop();
289 if (ap.av.getHistoryList().contains(command))
291 command.undoCommand(af.getViewAlignments());
292 ap.av.getHistoryList().remove(command);
293 ap.av.firePropertyChange("alignment", null,
294 ap.av.getAlignment().getSequences());
295 af.updateEditMenuBar();
298 ap.paintAlignment(true, true);
300 if (historyList.size() == 0)
302 undoButton.setEnabled(false);