X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FCalculationChooser.java;h=4e22a74485798aee2955faca65b64f61e9c802e4;hb=4e8b2752f94195adadb8ae9b46e0fcd5181a7155;hp=dda0a9fea8041487b407579dd6e1e06bc16e5c54;hpb=29625ee998523520e87bb88643247b3723e908bd;p=jalview.git diff --git a/src/jalview/gui/CalculationChooser.java b/src/jalview/gui/CalculationChooser.java index dda0a9f..4e22a74 100644 --- a/src/jalview/gui/CalculationChooser.java +++ b/src/jalview/gui/CalculationChooser.java @@ -52,12 +52,14 @@ import javax.swing.JRadioButton; import javax.swing.event.InternalFrameAdapter; import javax.swing.event.InternalFrameEvent; +import jalview.analysis.AlignmentUtils; import jalview.analysis.TreeBuilder; import jalview.analysis.scoremodels.ScoreModels; import jalview.analysis.scoremodels.SimilarityParams; import jalview.api.analysis.ScoreModelI; import jalview.api.analysis.SimilarityParamsI; import jalview.bin.Cache; +import jalview.datamodel.AlignmentAnnotation; import jalview.datamodel.SequenceGroup; import jalview.util.MessageManager; @@ -79,6 +81,21 @@ public class CalculationChooser extends JPanel private static final int MIN_TREE_SELECTION = 3; private static final int MIN_PCA_SELECTION = 4; + + private String secondaryStructureModelName; + + private void getSecondaryStructureModelName() { + + ScoreModels scoreModels = ScoreModels.getInstance(); + for (ScoreModelI sm : scoreModels.getModels()) + { + if (sm.isSecondaryStructure()) + { + secondaryStructureModelName = sm.getName(); + } + } + + } AlignFrame af; @@ -89,6 +106,8 @@ public class CalculationChooser extends JPanel JRadioButton averageDistance; JComboBox modelNames; + + JComboBox ssSourceDropdown; JButton calculate; @@ -121,6 +140,7 @@ public class CalculationChooser extends JPanel this.af = alignFrame; init(); af.alignPanel.setCalculationDialog(this); + } /** @@ -128,9 +148,10 @@ public class CalculationChooser extends JPanel */ void init() { + getSecondaryStructureModelName(); setLayout(new BorderLayout()); frame = new JInternalFrame(); - frame.setFrameIcon(WindowIcons.treeIcon); + frame.setFrameIcon(null); frame.setContentPane(this); this.setBackground(Color.white); frame.addFocusListener(new FocusListener() @@ -208,16 +229,37 @@ public class CalculationChooser extends JPanel pca.addActionListener(calcChanged); neighbourJoining.addActionListener(calcChanged); averageDistance.addActionListener(calcChanged); + + + //to do + ssSourceDropdown = buildSSSourcesOptionsList(); + ssSourceDropdown.setVisible(false); // Initially hide the dropdown /* * score models drop-down - with added tooltips! */ modelNames = buildModelOptionsList(); + + // Step 3: Show or Hide Dropdown Based on Selection + modelNames.addActionListener(new ActionListener() { + @Override + public void actionPerformed(ActionEvent e) { + String selectedModel = modelNames.getSelectedItem().toString(); + + if (selectedModel.equals(secondaryStructureModelName)) { + ssSourceDropdown.setVisible(true); + } else { + ssSourceDropdown.setVisible(false); + } + } + }); + JPanel scoreModelPanel = new JPanel(new FlowLayout(FlowLayout.CENTER)); scoreModelPanel.setOpaque(false); scoreModelPanel.add(modelNames); - + scoreModelPanel.add(ssSourceDropdown); + /* * score model parameters */ @@ -232,7 +274,7 @@ public class CalculationChooser extends JPanel paramsPanel.add(matchGaps); paramsPanel.add(includeGappedColumns); paramsPanel.add(shorterSequence); - + /* * OK / Cancel buttons */ @@ -270,7 +312,7 @@ public class CalculationChooser extends JPanel } this.add(actionPanel, BorderLayout.SOUTH); - int width = 350; + int width = 365; int height = includeParams ? 420 : 240; setMinimumSize(new Dimension(325, height - 10)); @@ -418,7 +460,38 @@ public class CalculationChooser extends JPanel return scoreModelsCombo; } + + + private JComboBox buildSSSourcesOptionsList() + { + final JComboBox comboBox = new JComboBox<>(); + Object curSel = comboBox.getSelectedItem(); + DefaultComboBoxModel sourcesModel = new DefaultComboBoxModel<>(); + List ssSources = getApplicableSecondaryStructureSources(); + + boolean selectedIsPresent = false; + for (String source : ssSources) + { + if (curSel != null && source.equals(curSel)) + { + selectedIsPresent = true; + curSel = source; + } + sourcesModel.addElement(source); + + } + + if (selectedIsPresent) + { + sourcesModel.setSelectedItem(curSel); + } + comboBox.setModel(sourcesModel); + + return comboBox; + } + + private void updateScoreModels(JComboBox comboBox, List toolTips) { @@ -430,8 +503,12 @@ public class CalculationChooser extends JPanel * select the score models applicable to the alignment type */ boolean nucleotide = af.getViewport().getAlignment().isNucleotide(); - List models = getApplicableScoreModels(nucleotide, - pca.isSelected()); + AlignmentAnnotation[] alignmentAnnotations = af.getViewport().getAlignment().getAlignmentAnnotation(); + + boolean ssPresent = AlignmentUtils.isSecondaryStructurePresent(alignmentAnnotations); + + List models = getApplicableScoreModels(nucleotide, pca.isSelected(), + ssPresent); /* * now we can actually add entries to the combobox, @@ -466,6 +543,7 @@ public class CalculationChooser extends JPanel } // finally, update the model comboBox.setModel(model); + } /** @@ -483,14 +561,15 @@ public class CalculationChooser extends JPanel * @return */ protected static List getApplicableScoreModels( - boolean nucleotide, boolean forPca) + boolean nucleotide, boolean forPca, boolean ssPresent) { List filtered = new ArrayList<>(); ScoreModels scoreModels = ScoreModels.getInstance(); for (ScoreModelI sm : scoreModels.getModels()) { - if (!nucleotide && sm.isProtein() || nucleotide && sm.isDNA()) + if (!nucleotide && sm.isProtein() || nucleotide && sm.isDNA() + || ssPresent && sm.isSecondaryStructure()) { filtered.add(sm); } @@ -505,10 +584,22 @@ public class CalculationChooser extends JPanel { filtered.add(scoreModels.getBlosum62()); } - + return filtered; } + + protected List getApplicableSecondaryStructureSources() + { + AlignmentAnnotation[] annotations = af.getViewport().getAlignment().getAlignmentAnnotation(); + + List ssSources = AlignmentUtils.getSecondaryStructureSources(annotations); + //List ssSources = AlignmentUtils.extractSSSourceInAlignmentAnnotation(annotations); + + + return ssSources; + } + /** * Open and calculate the selected tree or PCA on 'OK' */ @@ -516,8 +607,16 @@ public class CalculationChooser extends JPanel { boolean doPCA = pca.isSelected(); String modelName = modelNames.getSelectedItem().toString(); - SimilarityParamsI params = getSimilarityParameters(doPCA); - + String ssSource = ""; + Object selectedItem = ssSourceDropdown.getSelectedItem(); + if (selectedItem != null) { + ssSource = selectedItem.toString(); + } + SimilarityParams params = getSimilarityParameters(doPCA); + if(ssSource.length()>0) + { + params.setSecondaryStructureSource(ssSource); + } if (doPCA) { openPcaPanel(modelName, params); @@ -618,7 +717,7 @@ public class CalculationChooser extends JPanel * @param doPCA * @return */ - protected SimilarityParamsI getSimilarityParameters(boolean doPCA) + protected SimilarityParams getSimilarityParameters(boolean doPCA) { // commented out: parameter choices read from gui widgets // SimilarityParamsI params = new SimilarityParams(