OpenMS  2.4.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-2018.
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, double& ppm_score_weighted);
122 
131  bool dia_ms1_massdiff_score(double precursor_mz, SpectrumPtrType spectrum,
132  double& ppm_score);
133 
135  void dia_ms1_isotope_scores(double precursor_mz, SpectrumPtrType spectrum, size_t charge_state,
136  double& isotope_corr, double& isotope_overlap, const std::string& sum_formula = "");
137 
139  void dia_by_ion_score(SpectrumPtrType spectrum, AASequence& sequence,
140  int charge, double& bseries_score, double& yseries_score);
141 
143  void score_with_isotopes(SpectrumPtrType spectrum,
144  const std::vector<TransitionType>& transitions,
145  double& dotprod,
146  double& manhattan);
148 
149 private:
150 
152  DIAScoring(const DIAScoring& rhs);
153 
155  DIAScoring& operator=(const DIAScoring& rhs);
156 
158  void updateMembers_() override;
159 
161  void diaIsotopeScoresSub_(const std::vector<TransitionType>& transitions,
162  SpectrumPtrType spectrum,
163  std::map<std::string, double>& intensities,
164  double& isotope_corr,
165  double& isotope_overlap);
166 
169  void getFirstIsotopeRelativeIntensities_(const std::vector<TransitionType>& transitions,
170  OpenSwath::IMRMFeature* mrmfeature,
171  std::map<std::string, double>& intensities //experimental intensities of transitions
172  );
173 
174 private:
175 
191  void largePeaksBeforeFirstIsotope_(SpectrumPtrType spectrum, double mono_mz, double mono_int, int& nr_occurrences, double& max_ratio);
192 
201  double scoreIsotopePattern_(double product_mz,
202  const std::vector<double>& isotopes_int,
203  int putative_fragment_charge,
204  const std::string& sum_formula = "");
205 
206  // Parameters
215 
217  };
218 }
219 
220 
double dia_extract_window_
Definition: DIAScoring.h:207
double peak_before_mono_max_ppm_diff_
Definition: DIAScoring.h:213
double dia_nr_isotopes_
Definition: DIAScoring.h:211
boost::shared_ptr< Spectrum > SpectrumPtr
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/DataStructures.h:270
Generates theoretical spectra with various options.
Definition: TheoreticalSpectrumGenerator.h:63
Representation of a peptide/protein sequence.
Definition: AASequence.h:107
OpenSwath::SpectrumPtr SpectrumPtrType
Type definitions.
Definition: DIAScoring.h:89
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
double dia_byseries_ppm_diff_
Definition: DIAScoring.h:210
double dia_byseries_intensity_min_
Definition: DIAScoring.h:209
Scoring of an spectrum at the peak apex of an chromatographic elution peak.
Definition: DIAScoring.h:83
bool dia_extraction_ppm_
Definition: DIAScoring.h:214
double dia_centroided_
Definition: DIAScoring.h:208
double dia_nr_charges_
Definition: DIAScoring.h:212
OpenSwath::LightTransition TransitionType
Transition interface (Transition, Peptide, Protein)
Definition: DIAScoring.h:91
Definition: TransitionExperiment.h:46
Definition: ITransition.h:55
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:91
TheoreticalSpectrumGenerator * generator
Definition: DIAScoring.h:216