cagey.MassSpectrumPeak#

class cagey.MassSpectrumPeak(di_count, tri_count, adduct, charge, calculated_mz, spectrum_mz, separation_mz, intensity)[source]#

Bases: object

A peak in a mass spectrum.

Parameters:
  • di_count (int) – The number of di-topic precursors.

  • tri_count (int) – The number of tri-topic precursors.

  • adduct (str) – The adduct.

  • charge (int) – The charge.

  • calculated_mz (float) – The calculated m/z.

  • spectrum_mz (float) – The m/z from the spectrum.

  • separation_mz (float) – The separation peak m/z.

  • intensity (float) – The intensity of the peak.

Methods

Attributes

di_count

The number of di-topic precusors.

tri_count

The number of tri-topic precursors.

adduct

The adduct.

charge

The charge.

calculated_mz

The calculated m/z.

spectrum_mz

The m/z from the spectrum.

separation_mz

The separation peak m/z.

intensity

The intensity of the peak.

adduct: str#

The adduct.

calculated_mz: float#

The calculated m/z.

charge: int#

The charge.

di_count: int#

The number of di-topic precusors.

intensity: float#

The intensity of the peak.

separation_mz: float#

The separation peak m/z.

spectrum_mz: float#

The m/z from the spectrum.

tri_count: int#

The number of tri-topic precursors.