Examples of PeptideFragmentation


Examples of net.sf.mzmine.modules.peaklistmethods.identification.mascot.data.PeptideFragmentation

   * @return
   */
  public static double getIonCoverage(DataPoint[] dataPoints,
      Peptide peptide, SerieIonType ionType, double intensityThreshold) {

    PeptideFragmentation fragmentation = peptide.getFragmentation();
    FragmentIon[] fragmentIons = fragmentation.getFragmentIons(ionType);
    PeptideIdentityDataFile peptideDataFile = peptide.getScan()
        .getPeptideDataFile();
    double fragmentIonMassErrorTol = peptideDataFile
        .getFragmentIonMassErrorTolerance();

View Full Code Here

Examples of net.sf.mzmine.modules.peaklistmethods.identification.mascot.data.PeptideFragmentation

      // Ion serie
      PeptideIonSerie peptideIonSerie = parseIonSeriesSignificance(tokens[8]);
      peptide.setIonSeries(peptideIonSerie);

      // Calculate fragmentation
      PeptideFragmentation fragmentation = new PeptideFragmentation(
          peptide, pepDataFile);
      peptide.setFragmentation(fragmentation);

      // Protein info
      ProteinSection section;
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.