Examples of PeptideSorter


Examples of net.sf.mzmine.util.PeptideSorter

   * @return Peptide
   */
  public Peptide getHighScorePeptide() {
    // Sort m/z peaks by descending intensity
    Peptide[] sortedPeptides = peptides.toArray(new Peptide[0]);
    Arrays.sort(sortedPeptides, new PeptideSorter(
        SortingDirection.Descending));
    return sortedPeptides[0];
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.