common#

class PeakList(num_peaks, fs, ss, intensity, num_pixels, max_pixel_intensity, snr)#

Detected peaks information.

This typed dictionary stores information about a set of peaks found by a peak-finding algorithm in a detector data frame.

Parameters:
  • num_peaks (int)

  • fs (list[float])

  • ss (list[float])

  • intensity (list[float])

  • num_pixels (list[float])

  • max_pixel_intensity (list[float])

  • snr (list[float])

num_peaks: int#

The number of peaks detected in the data frame.

fs: list[float]#

A list of fractional fs indexes that locate the detected peaks in the datai frame.

ss: list[float]#

A list of fractional ss indexes that locate the detected peaks in the data frame.

intensity: list[float]#

A list of integrated intensities for the detected peaks.

num_pixels: list[float]#

A list storing the number of pixels in each detected peak.

max_pixel_intensity: list[float]#

A list storing, for each peak, the value of the pixel with the maximum intensity.

snr: list[float]#

A list storing the signal-to-noise ratio of each detected peak.