Package eu.isas.peptideshaker.gui.protein_inference

Examples of eu.isas.peptideshaker.gui.protein_inference.ProteinInferencePeptideLevelDialog


                        // open the protein inference at the petide level dialog
                        if (column == peptidesTable.getColumn("PI").getModelIndex()) {
                            progressDialog.setRunFinished();
                            try {
                                String peptideKey = getSelectedPeptide(false);
                                new ProteinInferencePeptideLevelDialog(peptideShakerGUI, true, peptideKey, null);
                            } catch (Exception e) {
                                peptideShakerGUI.catchException(e);
                            }
                        } else if (column == peptidesTable.getColumn("PTM").getModelIndex()) {
                            if (peptidesTable.getValueAt(row, column) != null
View Full Code Here


                        // open the protein inference at the petide level dialog
                        if (column == relatedPeptidesTable.getColumn("PI").getModelIndex()) {
                            try {
                                String peptideKey = getSelectedPeptide(true);
                                progressDialog.setRunFinished();
                                new ProteinInferencePeptideLevelDialog(peptideShakerGUI, true, peptideKey, null);
                            } catch (Exception e) {
                                peptideShakerGUI.catchException(e);
                            }
                        } else if (column == relatedPeptidesTable.getColumn("PTM").getModelIndex()) {
                            if (relatedPeptidesTable.getValueAt(row, column) != null
View Full Code Here

                if (column == peptideTable.getColumn("PI").getModelIndex() && evt != null && evt.getButton() == MouseEvent.BUTTON1) {
                    SelfUpdatingTableModel tableModel = (SelfUpdatingTableModel) proteinTable.getModel();
                    int proteinIndex = tableModel.getViewIndex(proteinTable.getSelectedRow());
                    String proteinKey = proteinKeys.get(proteinIndex);
                    String peptideKey = peptideTableMap.get(getPeptideIndex(row));
                    new ProteinInferencePeptideLevelDialog(peptideShakerGUI, true, peptideKey, proteinKey);
                }
            }
        } catch (Exception e) {
            peptideShakerGUI.catchException(e);
        }
View Full Code Here

            // open the protein inference at the petide level dialog
            if (column == peptideTable.getColumn("PI").getModelIndex() && evt != null && evt.getButton() == MouseEvent.BUTTON1) {
                try {
                    tableModel = (SelfUpdatingTableModel) proteinTable.getModel();
                    String proteinKey = proteinKeys.get(tableModel.getViewIndex(proteinTable.getSelectedRow()));
                    new ProteinInferencePeptideLevelDialog(peptideShakerGUI, true, peptideKey, proteinKey);
                } catch (Exception e) {
                    peptideShakerGUI.catchException(e);
                }
            }
View Full Code Here

TOP

Related Classes of eu.isas.peptideshaker.gui.protein_inference.ProteinInferencePeptideLevelDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.