73 static double computePScore(
double fragment_mass_tolerance,
bool fragment_mass_tolerance_unit_ppm,
const std::map<Size, PeakSpectrum>& peak_level_spectra,
const std::vector<PeakSpectrum>& theo_spectra,
double mz_window = 100.0);
83 static double computePScore(
double fragment_mass_tolerance,
bool fragment_mass_tolerance_unit_ppm,
const std::map<Size, PeakSpectrum>& peak_level_spectra,
const PeakSpectrum& theo_spectrum,
double mz_window = 100.0);
In-Memory representation of a mass spectrometry run.
Definition: MSExperiment.h:45
The representation of a 1D spectrum.
Definition: MSSpectrum.h:44
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:97
Main OpenMS namespace.
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
Implementation of the PScore PSM scoring algorithm.
Definition: PScore.h:24
static std::vector< Size > calculateIntensityRankInMZWindow(const std::vector< double > &mz, const std::vector< double > &intensities, double mz_window)
calculate local (windowed) peak ranks.
static double cleavageCorrectionTerm(Size cleavages, bool consecutive_cleavage)
static double modificationCorrectionTerm(Size modifications)
static double computePScore(double fragment_mass_tolerance, bool fragment_mass_tolerance_unit_ppm, const std::map< Size, PeakSpectrum > &peak_level_spectra, const std::vector< PeakSpectrum > &theo_spectra, double mz_window=100.0)
Computes the PScore for a vector of theoretical spectra.
static double computePScore(double fragment_mass_tolerance, bool fragment_mass_tolerance_unit_ppm, const std::map< Size, PeakSpectrum > &peak_level_spectra, const PeakSpectrum &theo_spectrum, double mz_window=100.0)
Computes the PScore for a single theoretical spectrum.
static double massCorrectionTerm(double mass)
static std::map< Size, PeakSpectrum > calculatePeakLevelSpectra(const PeakSpectrum &spec, const std::vector< Size > &ranks, Size min_level=1, Size max_level=9)
Calculates spectra for peak level between min_level to max_level and stores them in the map A spectru...
static std::vector< std::vector< Size > > calculateRankMap(const PeakMap &peak_map, double mz_window=100)
precalculated, windowed peak ranks for a whole experiment.