Package com.compomics.util.experiment.identification

Examples of com.compomics.util.experiment.identification.SpectrumIdentificationAssumption


                        totalPeptideShakerIds++;
                        numberOfValidatedPsms++;

                        for (Integer tempAdvocate : advocatesUsed) {
                            if (spectrumMatch.getFirstHit(tempAdvocate) != null) {
                                SpectrumIdentificationAssumption firstHit = spectrumMatch.getFirstHit(tempAdvocate);
                                if ((firstHit instanceof PeptideAssumption) && ((PeptideAssumption) firstHit).getPeptide().isSameSequenceAndModificationStatus(spectrumMatch.getBestPeptideAssumption().getPeptide(),
                                        peptideShakerGUI.getSequenceMatchingPreferences())) {
                                    currentAdvocates.add(tempAdvocate);
                                }
                            }
View Full Code Here


                    if (currentSpectrum != null && tempSpectrumPanel != null) {

                        if (currentSpectrum.getMzValuesAsArray().length > 0 && currentSpectrum.getIntensityValuesAsArray().length > 0) {

                            if (searchResultsTable.getSelectedRow() != -1) {
                                SpectrumIdentificationAssumption currentAssumption = currentAssumptionsList.get(searchResultsTable.getSelectedRow());

                                if (currentAssumption != null) {
                                    currentSpectrumKey = spectrumMatch.getKey();
                                    if (currentAssumption instanceof PeptideAssumption) {
                                        PeptideAssumption currentPeptideAssumption = (PeptideAssumption) currentAssumption;
View Full Code Here

TOP

Related Classes of com.compomics.util.experiment.identification.SpectrumIdentificationAssumption

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.