OpenMS  2.5.0
DIAScoring.h
Go to the documentation of this file.
1 // --------------------------------------------------------------------------
2 // OpenMS -- Open-Source Mass Spectrometry
3 // --------------------------------------------------------------------------
4 // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
5 // ETH Zurich, and Freie Universitaet Berlin 2002-2020.
6 //
7 // This software is released under a three-clause BSD license:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of any author or any participating institution
14 // may be used to endorse or promote products derived from this software
15 // without specific prior written permission.
16 // For a full list of authors, refer to the file AUTHORS.
17 // --------------------------------------------------------------------------
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 // ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
22 // INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
30 // --------------------------------------------------------------------------
31 // $Maintainer: Hannes Roest $
32 // $Authors: Hannes Roest, Witold Wolski $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
37 #include <boost/math/special_functions/fpclassify.hpp> // for isnan
40 
45 
46 namespace OpenMS
47 {
48  class TheoreticalSpectrumGenerator;
49 
83  class OPENMS_DLLAPI DIAScoring :
84  public DefaultParamHandler
85  {
87 
93 
94 public:
95 
97 
98  DIAScoring();
100 
102  ~DIAScoring() override;
104 
106  // DIA / SWATH scoring
107 
109 
110  void dia_isotope_scores(const std::vector<TransitionType>& transitions,
112  SpectrumPtrType spectrum,
113  OpenSwath::IMRMFeature* mrmfeature,
114  double& isotope_corr,
115  double& isotope_overlap);
116 
118  void dia_massdiff_score(const std::vector<TransitionType>& transitions,
119  SpectrumPtrType spectrum,
120  const std::vector<double>& normalized_library_intensity,
121  double& ppm_score,
122  double& ppm_score_weighted,
123  std::vector<double>& diff_ppm);
124 
133  bool dia_ms1_massdiff_score(double precursor_mz, SpectrumPtrType spectrum,
134  double& ppm_score);
135 
137  void dia_ms1_isotope_scores(double precursor_mz, SpectrumPtrType spectrum, size_t charge_state,
138  double& isotope_corr, double& isotope_overlap, const std::string& sum_formula = "");
139 
141  void dia_by_ion_score(SpectrumPtrType spectrum, AASequence& sequence,
142  int charge, double& bseries_score, double& yseries_score);
143 
145  void score_with_isotopes(SpectrumPtrType spectrum,
146  const std::vector<TransitionType>& transitions,
147  double& dotprod,
148  double& manhattan);
150 
151 private:
152 
154  DIAScoring(const DIAScoring& rhs);
155 
157  DIAScoring& operator=(const DIAScoring& rhs);
158 
160  void updateMembers_() override;
161 
163  void diaIsotopeScoresSub_(const std::vector<TransitionType>& transitions,
164  SpectrumPtrType spectrum,
165  std::map<std::string, double>& intensities,
166  double& isotope_corr,
167  double& isotope_overlap);
168 
171  void getFirstIsotopeRelativeIntensities_(const std::vector<TransitionType>& transitions,
172  OpenSwath::IMRMFeature* mrmfeature,
173  std::map<std::string, double>& intensities //experimental intensities of transitions
174  );
175 
176 private:
177 
193  void largePeaksBeforeFirstIsotope_(SpectrumPtrType spectrum, double mono_mz, double mono_int, int& nr_occurrences, double& max_ratio);
194 
203  double scoreIsotopePattern_(double product_mz,
204  const std::vector<double>& isotopes_int,
205  int putative_fragment_charge,
206  const std::string& sum_formula = "");
207 
208  // Parameters
217 
219  };
220 }
221 
DefaultParamHandler.h
ITransition.h
OpenMS::DIAScoring
Scoring of an spectrum at the peak apex of an chromatographic elution peak.
Definition: DIAScoring.h:83
OpenMS::DIAScoring::SpectrumPtrType
OpenSwath::SpectrumPtr SpectrumPtrType
Type definitions.
Definition: DIAScoring.h:89
TransitionExperiment.h
ISpectrumAccess.h
DataStructures.h
OpenMS::DIAScoring::dia_nr_isotopes_
double dia_nr_isotopes_
Definition: DIAScoring.h:212
OpenMS::DIAScoring::dia_extract_window_
double dia_extract_window_
Definition: DIAScoring.h:209
OpenMS::DefaultParamHandler
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:91
OpenMS
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
OpenMS::DIAScoring::dia_byseries_intensity_min_
double dia_byseries_intensity_min_
Definition: DIAScoring.h:210
OpenMS::DIAScoring::dia_extraction_ppm_
bool dia_extraction_ppm_
Definition: DIAScoring.h:215
OpenMS::DIAScoring::dia_byseries_ppm_diff_
double dia_byseries_ppm_diff_
Definition: DIAScoring.h:211
OpenMS::TheoreticalSpectrumGenerator
Generates theoretical spectra for peptides with various options.
Definition: TheoreticalSpectrumGenerator.h:67
AASequence.h
OpenSwath::SpectrumPtr
boost::shared_ptr< Spectrum > SpectrumPtr
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/DataStructures.h:292
OpenMS::AASequence
Representation of a peptide/protein sequence.
Definition: AASequence.h:113
OpenMS::DIAScoring::dia_nr_charges_
double dia_nr_charges_
Definition: DIAScoring.h:213
OpenMS::DIAScoring::TransitionType
OpenSwath::LightTransition TransitionType
Transition interface (Transition, Peptide, Protein)
Definition: DIAScoring.h:91
OpenMS::DIAScoring::peak_before_mono_max_ppm_diff_
double peak_before_mono_max_ppm_diff_
Definition: DIAScoring.h:214
OpenMS::DIAScoring::dia_centroided_
bool dia_centroided_
Definition: DIAScoring.h:216
OpenSwath::LightTransition
Definition: TransitionExperiment.h:46
OpenMS::DIAScoring::generator
TheoreticalSpectrumGenerator * generator
Definition: DIAScoring.h:218
OpenSwath::IMRMFeature
Definition: ITransition.h:56