Example #1
0
            private MeasuredPeptide Pop()
            {
                if (Empty)
                {
                    return(null);
                }
                var pep = new MeasuredPeptide(_peptides.First().Peptide);

                _peptides.RemoveAt(0);
                return(pep);
            }
Example #2
0
 public MeasuredPeptide(MeasuredPeptide other) : this(other.Target, other.RetentionTime)
 {
 }
Example #3
0
 public ScoredPeptide(MeasuredPeptide peptide, PeptideDocNode nodePep, float score)
 {
     Peptide = peptide;
     NodePep = nodePep;
     Score   = score;
 }