OpenMS  3.0.0
MetaboliteSpectralMatching.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-2022.
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: Timo Sachsenberg $
32 // $Authors: Erhan Kenar $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
38 #include <OpenMS/KERNEL/Feature.h>
40 #include <OpenMS/FORMAT/MzTab.h>
46 
47 #include <vector>
48 
49 namespace OpenMS
50 {
51 
52  struct OPENMS_DLLAPI PrecursorMassComparator
53  {
54  bool operator() (const MSSpectrum& a, const MSSpectrum& b)
55  {
56  return a.getPrecursors()[0].getMZ() < b.getPrecursors()[0].getMZ();
57  }
58 
60 
61  class OPENMS_DLLAPI SpectralMatch
62  {
63  public:
65  SpectralMatch();
66 
68  ~SpectralMatch();
69 
72 
74  SpectralMatch& operator=(const SpectralMatch&);
75 
76  double getObservedPrecursorMass() const;
77  void setObservedPrecursorMass(const double&);
78 
79  double getObservedPrecursorRT() const;
80  void setObservedPrecursorRT(const double&);
81 
82  double getFoundPrecursorMass() const;
83  void setFoundPrecursorMass(const double&);
84 
85  Int getFoundPrecursorCharge() const;
86  void setFoundPrecursorCharge(const Int&);
87 
88  double getMatchingScore() const;
89  void setMatchingScore(const double&);
90 
91  Size getObservedSpectrumIndex() const;
92  void setObservedSpectrumIndex(const Size&);
93 
94  Size getMatchingSpectrumIndex() const;
95  void setMatchingSpectrumIndex(const Size&);
96 
97  String getObservedSpectrumNativeID() const;
98  void setObservedSpectrumNativeID(const String&);
99 
100  String getPrimaryIdentifier() const;
101  void setPrimaryIdentifier(const String&);
102 
103  String getSecondaryIdentifier() const;
104  void setSecondaryIdentifier(const String&);
105 
106  String getCommonName() const;
107  void setCommonName(const String&);
108 
109  String getSumFormula() const;
110  void setSumFormula(const String&);
111 
112  String getInchiString() const;
113  void setInchiString(const String&);
114 
115  String getSMILESString() const;
116  void setSMILESString(const String&);
117 
118  String getPrecursorAdduct() const;
119  void setPrecursorAdduct(const String&);
120 
121 
122  private:
131 
132  // further meta information
140 
141  };
142 
143  struct OPENMS_DLLAPI SpectralMatchScoreComparator
144  {
145  bool operator() (const SpectralMatch& a, const SpectralMatch& b)
146  {
147  return a.getMatchingScore() > b.getMatchingScore();
148  }
149 
151 
152  class OPENMS_DLLAPI MetaboliteSpectralMatching :
153  public DefaultParamHandler,
154  public ProgressLogger
155  {
156  public:
159 
161  ~MetaboliteSpectralMatching() override;
162 
164  static double computeHyperScore(
165  double fragment_mass_error,
166  bool fragment_mass_tolerance_unit_ppm,
167  const MSSpectrum& exp_spectrum,
168  const MSSpectrum& db_spectrum,
169  double mz_lower_bound = 0.0);
170 
172  static double computeHyperScore(
173  double fragment_mass_error,
174  bool fragment_mass_tolerance_unit_ppm,
175  const MSSpectrum& exp_spectrum,
176  const MSSpectrum& db_spectrum,
177  std::vector<PeptideHit::PeakAnnotation>& annotations,
178  double mz_lower_bound = 0.0);
179 
181  void run(PeakMap &, PeakMap &, MzTab &, String &);
182 
183  protected:
184  void updateMembers_() override;
185 
186  // we have to use a pointer for "annotations" because mutable
187  // references can't have temporary default values:
188  static double computeHyperScore_(
189  double fragment_mass_error,
190  bool fragment_mass_tolerance_unit_ppm,
191  const MSSpectrum& exp_spectrum,
192  const MSSpectrum& db_spectrum,
193  std::vector<PeptideHit::PeakAnnotation>* annotations = 0,
194  double mz_lower_bound = 0.0);
195 
196  private:
198  void exportMzTab_(const std::vector<SpectralMatch>&, MzTab&);
199 
204 
206 
208  };
209 
210 }
211 
A more convenient string class.
Definition: String.h:58
String observed_spectrum_native_id_
Definition: MetaboliteSpectralMatching.h:130
Definition: MetaboliteSpectralMatching.h:143
Int found_precursor_charge_
Definition: MetaboliteSpectralMatching.h:126
bool merge_spectra_
Definition: MetaboliteSpectralMatching.h:207
Definition: MetaboliteSpectralMatching.h:152
double found_precursor_mass_
Definition: MetaboliteSpectralMatching.h:125
Definition: MetaboliteSpectralMatching.h:61
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
String primary_id_
Definition: MetaboliteSpectralMatching.h:133
struct OpenMS::SpectralMatchScoreComparator SpectralMatchScoreGreater
double observed_precursor_mass_
Definition: MetaboliteSpectralMatching.h:123
The representation of a 1D spectrum.
Definition: MSSpectrum.h:66
String ion_mode_
Definition: MetaboliteSpectralMatching.h:203
String secondary_id_
Definition: MetaboliteSpectralMatching.h:134
Definition: MetaboliteSpectralMatching.h:52
double getMatchingScore() const
Size observed_spectrum_idx_
Definition: MetaboliteSpectralMatching.h:128
struct OpenMS::PrecursorMassComparator PrecursorMZLess
String inchi_string_
Definition: MetaboliteSpectralMatching.h:137
String precursor_adduct_
Definition: MetaboliteSpectralMatching.h:139
double precursor_mz_error_
Definition: MetaboliteSpectralMatching.h:200
In-Memory representation of a mass spectrometry run.
Definition: MSExperiment.h:70
Size matching_spectrum_idx_
Definition: MetaboliteSpectralMatching.h:129
String common_name_
Definition: MetaboliteSpectralMatching.h:135
const std::vector< Precursor > & getPrecursors() const
returns a const reference to the precursors
double matching_score_
Definition: MetaboliteSpectralMatching.h:127
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:52
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:92
double observed_precursor_rt_
Definition: MetaboliteSpectralMatching.h:124
int Int
Signed integer type.
Definition: Types.h:102
String report_mode_
Definition: MetaboliteSpectralMatching.h:205
String smiles_string_
Definition: MetaboliteSpectralMatching.h:138
double fragment_mz_error_
Definition: MetaboliteSpectralMatching.h:201
String sum_formula_
Definition: MetaboliteSpectralMatching.h:136
Data model of MzTab files. Please see the official MzTab specification at https://code.google.com/p/mztab/.
Definition: MzTab.h:477
String mz_error_unit_
Definition: MetaboliteSpectralMatching.h:202