JAL-4386 Calculate tree using secondary structure annotation - Documentation, Changes...
[jalview.git] / src / jalview / gui / CalculationChooser.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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.
11  *  
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.
16  * 
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.
20  */
21 package jalview.gui;
22
23 import java.awt.BorderLayout;
24 import java.awt.Color;
25 import java.awt.Component;
26 import java.awt.Dimension;
27 import java.awt.FlowLayout;
28 import java.awt.Font;
29 import java.awt.GridLayout;
30 import java.awt.Insets;
31 import java.awt.event.ActionEvent;
32 import java.awt.event.ActionListener;
33 import java.awt.event.FocusEvent;
34 import java.awt.event.FocusListener;
35 import java.awt.event.MouseAdapter;
36 import java.awt.event.MouseEvent;
37 import java.beans.PropertyVetoException;
38 import java.util.ArrayList;
39 import java.util.List;
40
41 import javax.swing.BorderFactory;
42 import javax.swing.ButtonGroup;
43 import javax.swing.DefaultComboBoxModel;
44 import javax.swing.JButton;
45 import javax.swing.JCheckBox;
46 import javax.swing.JComboBox;
47 import javax.swing.JInternalFrame;
48 import javax.swing.JLabel;
49 import javax.swing.JLayeredPane;
50 import javax.swing.JPanel;
51 import javax.swing.JRadioButton;
52 import javax.swing.event.InternalFrameAdapter;
53 import javax.swing.event.InternalFrameEvent;
54
55 import jalview.analysis.TreeBuilder;
56 import jalview.analysis.scoremodels.ScoreModels;
57 import jalview.analysis.scoremodels.SimilarityParams;
58 import jalview.api.analysis.ScoreModelI;
59 import jalview.api.analysis.SimilarityParamsI;
60 import jalview.bin.Cache;
61 import jalview.datamodel.AlignmentAnnotation;
62 import jalview.datamodel.SequenceGroup;
63 import jalview.datamodel.SequenceI;
64 import jalview.util.MessageManager;
65
66 /**
67  * A dialog where a user can choose and action Tree or PCA calculation options
68  */
69 public class CalculationChooser extends JPanel
70 {
71   /*
72    * flag for whether gap matches residue in the PID calculation for a Tree
73    * - true gives Jalview 2.10.1 behaviour
74    * - set to false (using Groovy) for a more correct tree
75    * (JAL-374)
76    */
77   private static boolean treeMatchGaps = true;
78
79   private static final Font VERDANA_11PT = new Font("Verdana", 0, 11);
80
81   private static final int MIN_TREE_SELECTION = 3;
82
83   private static final int MIN_PCA_SELECTION = 4;
84
85   AlignFrame af;
86
87   JRadioButton pca;
88
89   JRadioButton neighbourJoining;
90
91   JRadioButton averageDistance;
92
93   JComboBox<String> modelNames;
94
95   JButton calculate;
96
97   private JInternalFrame frame;
98
99   private JCheckBox includeGaps;
100
101   private JCheckBox matchGaps;
102
103   private JCheckBox includeGappedColumns;
104
105   private JCheckBox shorterSequence;
106
107   final ComboBoxTooltipRenderer renderer = new ComboBoxTooltipRenderer();
108
109   List<String> tips = new ArrayList<>();
110
111   /*
112    * the most recently opened PCA results panel
113    */
114   private PCAPanel pcaPanel;
115
116   /**
117    * Constructor
118    * 
119    * @param af
120    */
121   public CalculationChooser(AlignFrame alignFrame)
122   {
123     this.af = alignFrame;
124     init();
125     af.alignPanel.setCalculationDialog(this);
126   }
127
128   /**
129    * Lays out the panel and adds it to the desktop
130    */
131   void init()
132   {
133     setLayout(new BorderLayout());
134     frame = new JInternalFrame();
135     frame.setFrameIcon(null);
136     frame.setContentPane(this);
137     this.setBackground(Color.white);
138     frame.addFocusListener(new FocusListener()
139     {
140
141       @Override
142       public void focusLost(FocusEvent e)
143       {
144       }
145
146       @Override
147       public void focusGained(FocusEvent e)
148       {
149         validateCalcTypes();
150       }
151     });
152     /*
153      * Layout consists of 3 or 4 panels:
154      * - first with choice of PCA or tree method NJ or AV
155      * - second with choice of score model
156      * - third with score model parameter options [suppressed]
157      * - fourth with OK and Cancel
158      */
159     pca = new JRadioButton(
160             MessageManager.getString("label.principal_component_analysis"));
161     pca.setOpaque(false);
162
163     neighbourJoining = new JRadioButton(
164             MessageManager.getString("label.tree_calc_nj"));
165     neighbourJoining.setSelected(true);
166     neighbourJoining.setOpaque(false);
167
168     averageDistance = new JRadioButton(
169             MessageManager.getString("label.tree_calc_av"));
170     averageDistance.setOpaque(false);
171
172     JPanel calcChoicePanel = new JPanel(new FlowLayout(FlowLayout.LEFT));
173     calcChoicePanel.setOpaque(false);
174
175     // first create the Tree calculation's border panel
176     JPanel treePanel = new JPanel(new FlowLayout(FlowLayout.LEFT));
177     treePanel.setOpaque(false);
178
179     JvSwingUtils.createTitledBorder(treePanel,
180             MessageManager.getString("label.tree"), true);
181
182     // then copy the inset dimensions for the border-less PCA panel
183     JPanel pcaBorderless = new JPanel(new FlowLayout(FlowLayout.LEFT));
184     Insets b = treePanel.getBorder().getBorderInsets(treePanel);
185     pcaBorderless.setBorder(
186             BorderFactory.createEmptyBorder(2, b.left, 2, b.right));
187     pcaBorderless.setOpaque(false);
188
189     pcaBorderless.add(pca, FlowLayout.LEFT);
190     calcChoicePanel.add(pcaBorderless, FlowLayout.LEFT);
191
192     treePanel.add(neighbourJoining);
193     treePanel.add(averageDistance);
194
195     calcChoicePanel.add(treePanel);
196
197     ButtonGroup calcTypes = new ButtonGroup();
198     calcTypes.add(pca);
199     calcTypes.add(neighbourJoining);
200     calcTypes.add(averageDistance);
201
202     ActionListener calcChanged = new ActionListener()
203     {
204       @Override
205       public void actionPerformed(ActionEvent e)
206       {
207         validateCalcTypes();
208       }
209     };
210     pca.addActionListener(calcChanged);
211     neighbourJoining.addActionListener(calcChanged);
212     averageDistance.addActionListener(calcChanged);
213
214     /*
215      * score models drop-down - with added tooltips!
216      */
217     modelNames = buildModelOptionsList();
218
219     JPanel scoreModelPanel = new JPanel(new FlowLayout(FlowLayout.CENTER));
220     scoreModelPanel.setOpaque(false);
221     scoreModelPanel.add(modelNames);
222
223     /*
224      * score model parameters
225      */
226     JPanel paramsPanel = new JPanel(new GridLayout(5, 1));
227     paramsPanel.setOpaque(false);
228     includeGaps = new JCheckBox("Include gaps");
229     matchGaps = new JCheckBox("Match gaps");
230     includeGappedColumns = new JCheckBox("Include gapped columns");
231     shorterSequence = new JCheckBox("Match on shorter sequence");
232     paramsPanel.add(new JLabel("Pairwise sequence scoring options"));
233     paramsPanel.add(includeGaps);
234     paramsPanel.add(matchGaps);
235     paramsPanel.add(includeGappedColumns);
236     paramsPanel.add(shorterSequence);
237
238     /*
239      * OK / Cancel buttons
240      */
241     calculate = new JButton(MessageManager.getString("action.calculate"));
242     calculate.setFont(VERDANA_11PT);
243     calculate.addActionListener(new java.awt.event.ActionListener()
244     {
245       @Override
246       public void actionPerformed(ActionEvent e)
247       {
248         calculate_actionPerformed();
249       }
250     });
251     JButton close = new JButton(MessageManager.getString("action.close"));
252     close.setFont(VERDANA_11PT);
253     close.addActionListener(new java.awt.event.ActionListener()
254     {
255       @Override
256       public void actionPerformed(ActionEvent e)
257       {
258         close_actionPerformed();
259       }
260     });
261     JPanel actionPanel = new JPanel();
262     actionPanel.setOpaque(false);
263     actionPanel.add(calculate);
264     actionPanel.add(close);
265
266     boolean includeParams = false;
267     this.add(calcChoicePanel, BorderLayout.CENTER);
268     calcChoicePanel.add(scoreModelPanel);
269     if (includeParams)
270     {
271       scoreModelPanel.add(paramsPanel);
272     }
273     this.add(actionPanel, BorderLayout.SOUTH);
274
275     int width = 350;
276     int height = includeParams ? 420 : 240;
277
278     setMinimumSize(new Dimension(325, height - 10));
279     String title = MessageManager.getString("label.choose_calculation");
280     if (af.getViewport().getViewName() != null)
281     {
282       title = title + " (" + af.getViewport().getViewName() + ")";
283     }
284
285     Desktop.addInternalFrame(frame, title, width, height, false);
286     calcChoicePanel.doLayout();
287     revalidate();
288     /*
289      * null the AlignmentPanel's reference to the dialog when it is closed
290      */
291     frame.addInternalFrameListener(new InternalFrameAdapter()
292     {
293       @Override
294       public void internalFrameClosed(InternalFrameEvent evt)
295       {
296         af.alignPanel.setCalculationDialog(null);
297       };
298     });
299
300     validateCalcTypes();
301     frame.setLayer(JLayeredPane.PALETTE_LAYER);
302   }
303
304   /**
305    * enable calculations applicable for the current alignment or selection.
306    */
307   protected void validateCalcTypes()
308   {
309     int size = af.getViewport().getAlignment().getHeight();
310     if (af.getViewport().getSelectionGroup() != null)
311     {
312       size = af.getViewport().getSelectionGroup().getSize();
313     }
314
315     /*
316      * disable calc options for which there is insufficient input data
317      * return value of true means enabled and selected
318      */
319     boolean checkPca = checkEnabled(pca, size, MIN_PCA_SELECTION);
320     boolean checkNeighbourJoining = checkEnabled(neighbourJoining, size,
321             MIN_TREE_SELECTION);
322     boolean checkAverageDistance = checkEnabled(averageDistance, size,
323             MIN_TREE_SELECTION);
324
325     if (checkPca || checkNeighbourJoining || checkAverageDistance)
326     {
327       calculate.setToolTipText(null);
328       calculate.setEnabled(true);
329     }
330     else
331     {
332       calculate.setEnabled(false);
333     }
334     updateScoreModels(modelNames, tips);
335   }
336
337   /**
338    * Check the input and disable a calculation's radio button if necessary. A
339    * tooltip is shown for disabled calculations.
340    * 
341    * @param calc
342    *          - radio button for the calculation being validated
343    * @param size
344    *          - size of input to calculation
345    * @param minsize
346    *          - minimum size for calculation
347    * @return true if size >= minsize and calc.isSelected
348    */
349   private boolean checkEnabled(JRadioButton calc, int size, int minsize)
350   {
351     String ttip = MessageManager
352             .formatMessage("label.you_need_at_least_n_sequences", minsize);
353
354     calc.setEnabled(size >= minsize);
355     if (!calc.isEnabled())
356     {
357       calc.setToolTipText(ttip);
358     }
359     else
360     {
361       calc.setToolTipText(null);
362     }
363     if (calc.isSelected())
364     {
365       modelNames.setEnabled(calc.isEnabled());
366       if (calc.isEnabled())
367       {
368         return true;
369       }
370       else
371       {
372         calculate.setToolTipText(ttip);
373       }
374     }
375     return false;
376   }
377
378   /**
379    * A rather elaborate helper method (blame Swing, not me) that builds a
380    * drop-down list of score models (by name) with descriptions as tooltips.
381    * There is also a tooltip shown for the currently selected item when hovering
382    * over it (without opening the list).
383    */
384   protected JComboBox<String> buildModelOptionsList()
385   {
386     final JComboBox<String> scoreModelsCombo = new JComboBox<>();
387     scoreModelsCombo.setRenderer(renderer);
388
389     /*
390      * show tooltip on mouse over the combobox
391      * note the listener has to be on the components that make up
392      * the combobox, doesn't work if just on the combobox
393      */
394     final MouseAdapter mouseListener = new MouseAdapter()
395     {
396       @Override
397       public void mouseEntered(MouseEvent e)
398       {
399         scoreModelsCombo.setToolTipText(
400                 tips.get(scoreModelsCombo.getSelectedIndex()));
401       }
402
403       @Override
404       public void mouseExited(MouseEvent e)
405       {
406         scoreModelsCombo.setToolTipText(null);
407       }
408     };
409     for (Component c : scoreModelsCombo.getComponents())
410     {
411       c.addMouseListener(mouseListener);
412     }
413
414     updateScoreModels(scoreModelsCombo, tips);
415
416     /*
417      * set the list of tooltips on the combobox's renderer
418      */
419     renderer.setTooltips(tips);
420
421     return scoreModelsCombo;
422   }
423
424   private void updateScoreModels(JComboBox<String> comboBox,
425           List<String> toolTips)
426   {
427     Object curSel = comboBox.getSelectedItem();
428     toolTips.clear();
429     DefaultComboBoxModel<String> model = new DefaultComboBoxModel<>();
430
431     /*
432      * select the score models applicable to the alignment type
433      */
434     boolean nucleotide = af.getViewport().getAlignment().isNucleotide();
435     AlignmentAnnotation[] alignmentAnnotation = af.getViewport().getAlignment().getAlignmentAnnotation();
436
437     boolean ssPresent = false;
438
439     for (AlignmentAnnotation aa : alignmentAnnotation)
440
441     {
442       if(ssPresent) {
443         break;
444       }     
445
446       if (aa.label.equals("Secondary Structure") || aa.label.equals("jnetpred"))
447
448       {
449         ssPresent = true;
450         break;
451       }
452     }
453
454     List<ScoreModelI> models = getApplicableScoreModels(nucleotide, pca.isSelected(),
455             ssPresent);
456
457     /*
458      * now we can actually add entries to the combobox,
459      * remembering their descriptions for tooltips
460      */
461     boolean selectedIsPresent = false;
462     for (ScoreModelI sm : models)
463     {
464       if (curSel != null && sm.getName().equals(curSel))
465       {
466         selectedIsPresent = true;
467         curSel = sm.getName();
468       }
469       model.addElement(sm.getName());
470
471       /*
472        * tooltip is description if provided, else text lookup with
473        * fallback on the model name
474        */
475       String tooltip = sm.getDescription();
476       if (tooltip == null)
477       {
478         tooltip = MessageManager.getStringOrReturn("label.score_model_",
479                 sm.getName());
480       }
481       toolTips.add(tooltip);
482     }
483
484     if (selectedIsPresent)
485     {
486       model.setSelectedItem(curSel);
487     }
488     // finally, update the model
489     comboBox.setModel(model);
490   }
491
492   /**
493    * Builds a list of score models which are applicable for the alignment and
494    * calculation type (peptide or generic models for protein, nucleotide or
495    * generic models for nucleotide).
496    * <p>
497    * As a special case, includes BLOSUM62 as an extra option for nucleotide PCA.
498    * This is for backwards compatibility with Jalview prior to 2.8 when BLOSUM62
499    * was the only score matrix supported. This is included if property
500    * BLOSUM62_PCA_FOR_NUCLEOTIDE is set to true in the Jalview properties file.
501    * 
502    * @param nucleotide
503    * @param forPca
504    * @return
505    */
506   protected static List<ScoreModelI> getApplicableScoreModels(
507           boolean nucleotide, boolean forPca, boolean ssPresent)
508   {
509     List<ScoreModelI> filtered = new ArrayList<>();
510
511     ScoreModels scoreModels = ScoreModels.getInstance();
512     for (ScoreModelI sm : scoreModels.getModels())
513     {
514       if (!nucleotide && sm.isProtein() || nucleotide && sm.isDNA() 
515               || ssPresent && sm.isSecondaryStructure())
516       {
517         filtered.add(sm);
518       }
519     }
520
521     /*
522      * special case: add BLOSUM62 as last option for nucleotide PCA, 
523      * for backwards compatibility with Jalview < 2.8 (JAL-2962)
524      */
525     if (nucleotide && forPca
526             && Cache.getDefault("BLOSUM62_PCA_FOR_NUCLEOTIDE", false))
527     {
528       filtered.add(scoreModels.getBlosum62());
529     }
530     
531     return filtered;
532   }
533
534   /**
535    * Open and calculate the selected tree or PCA on 'OK'
536    */
537   protected void calculate_actionPerformed()
538   {
539     boolean doPCA = pca.isSelected();
540     String modelName = modelNames.getSelectedItem().toString();
541     SimilarityParamsI params = getSimilarityParameters(doPCA);
542
543     if (doPCA)
544     {
545       openPcaPanel(modelName, params);
546     }
547     else
548     {
549       openTreePanel(modelName, params);
550     }
551
552     // closeFrame();
553   }
554
555   /**
556    * Open a new Tree panel on the desktop
557    * 
558    * @param modelName
559    * @param params
560    */
561   protected void openTreePanel(String modelName, SimilarityParamsI params)
562   {
563     /*
564      * gui validation shouldn't allow insufficient sequences here, but leave
565      * this check in in case this method gets exposed programmatically in future
566      */
567     AlignViewport viewport = af.getViewport();
568     SequenceGroup sg = viewport.getSelectionGroup();
569     if (sg != null && sg.getSize() < MIN_TREE_SELECTION)
570     {
571       JvOptionPane.showMessageDialog(Desktop.desktop,
572               MessageManager.formatMessage(
573                       "label.you_need_at_least_n_sequences",
574                       MIN_TREE_SELECTION),
575               MessageManager.getString("label.not_enough_sequences"),
576               JvOptionPane.WARNING_MESSAGE);
577       return;
578     }
579
580     String treeType = neighbourJoining.isSelected()
581             ? TreeBuilder.NEIGHBOUR_JOINING
582             : TreeBuilder.AVERAGE_DISTANCE;
583     af.newTreePanel(treeType, modelName, params);
584   }
585
586   /**
587    * Open a new PCA panel on the desktop
588    * 
589    * @param modelName
590    * @param params
591    */
592   protected void openPcaPanel(String modelName, SimilarityParamsI params)
593   {
594     AlignViewport viewport = af.getViewport();
595
596     /*
597      * gui validation shouldn't allow insufficient sequences here, but leave
598      * this check in in case this method gets exposed programmatically in future
599      */
600     if (((viewport.getSelectionGroup() != null)
601             && (viewport.getSelectionGroup().getSize() < MIN_PCA_SELECTION)
602             && (viewport.getSelectionGroup().getSize() > 0))
603             || (viewport.getAlignment().getHeight() < MIN_PCA_SELECTION))
604     {
605       JvOptionPane.showInternalMessageDialog(this,
606               MessageManager.formatMessage(
607                       "label.you_need_at_least_n_sequences",
608                       MIN_PCA_SELECTION),
609               MessageManager
610                       .getString("label.sequence_selection_insufficient"),
611               JvOptionPane.WARNING_MESSAGE);
612       return;
613     }
614
615     /*
616      * construct the panel and kick off its calculation thread
617      */
618     pcaPanel = new PCAPanel(af.alignPanel, modelName, params);
619     new Thread(pcaPanel).start();
620
621   }
622
623   /**
624    * 
625    */
626   protected void closeFrame()
627   {
628     try
629     {
630       frame.setClosed(true);
631     } catch (PropertyVetoException ex)
632     {
633     }
634   }
635
636   /**
637    * Returns a data bean holding parameters for similarity (or distance) model
638    * calculation
639    * 
640    * @param doPCA
641    * @return
642    */
643   protected SimilarityParamsI getSimilarityParameters(boolean doPCA)
644   {
645     // commented out: parameter choices read from gui widgets
646     // SimilarityParamsI params = new SimilarityParams(
647     // includeGappedColumns.isSelected(), matchGaps.isSelected(),
648     // includeGaps.isSelected(), shorterSequence.isSelected());
649
650     boolean includeGapGap = true;
651     boolean includeGapResidue = true;
652     boolean matchOnShortestLength = false;
653
654     /*
655      * 'matchGaps' flag is only used in the PID calculation
656      * - set to false for PCA so that PCA using PID reproduces SeqSpace PCA
657      * - set to true for Tree to reproduce Jalview 2.10.1 calculation
658      * - set to false for Tree for a more correct calculation (JAL-374)
659      */
660     boolean matchGap = doPCA ? false : treeMatchGaps;
661
662     return new SimilarityParams(includeGapGap, matchGap, includeGapResidue,
663             matchOnShortestLength);
664   }
665
666   /**
667    * Closes dialog on Close button press
668    */
669   protected void close_actionPerformed()
670   {
671     try
672     {
673       frame.setClosed(true);
674     } catch (Exception ex)
675     {
676     }
677   }
678
679   public PCAPanel getPcaPanel()
680   {
681     return pcaPanel;
682   }
683 }