Ejemplo n.º 1
0
 public Peak[] RemovePeaks(double mass, Peak[] peakList)
 {
     return peakList.Where(p => p.Mz <= mass).ToArray();
 }