OpenMS  2.7.0
MZTrafoModel.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-2021.
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: Chris Bielow $
32 // $Authors: Chris Bielow $
33 // --------------------------------------------------------------------------
34 
35 
36 #pragma once
37 
41 
42 #include <vector>
43 
44 namespace OpenMS
45 {
46 
66  class OPENMS_DLLAPI MZTrafoModel
67  {
68 
69  private:
70  std::vector<double> coeff_;
71  bool use_ppm_;
72  double rt_;
73 
75  static int ransac_seed_;
76  static double limit_offset_;
77  static double limit_scale_;
78  static double limit_power_;
79 
80  public:
81 
86 
97  MZTrafoModel(bool ppm_model);
98 
99  enum MODELTYPE { LINEAR, LINEAR_WEIGHTED, QUADRATIC, QUADRATIC_WEIGHTED, SIZE_OF_MODELTYPE };
100  static const std::string names_of_modeltype[];
108  static MODELTYPE nameToEnum(const std::string& name);
115  static const std::string& enumToName(MODELTYPE mt);
116 
117 
127  static void setRANSACParams(const Math::RANSACParam& p);
128 
132  static void setRANSACSeed(int seed);
133 
142  static void setCoefficientLimits(double offset, double scale, double power);
153  static bool isValidModel(const MZTrafoModel& trafo);
154 
161  bool isTrained() const;
162 
166  double getRT() const;
167 
180  double predict(double mz) const;
181 
193  static Size findNearest(const std::vector<MZTrafoModel>& tms, double rt);
194 
195 
197  struct RTLess
198  {
199  inline bool operator()(const double& left, const MZTrafoModel& right) const
200  {
201  return left < right.rt_;
202  }
203  inline bool operator()(const MZTrafoModel& left, const double& right) const
204  {
205  return left.rt_ < right;
206  }
207  inline bool operator()(const MZTrafoModel& left, const MZTrafoModel& right) const
208  {
209  return left.rt_ < right.rt_;
210  }
211  };
233  bool train(const CalibrationData& cd, MODELTYPE md, bool use_RANSAC,
234  double rt_left = -std::numeric_limits<double>::max(),
235  double rt_right = std::numeric_limits<double>::max()
236  );
237 
262  bool train(std::vector<double> error_mz,
263  std::vector<double> theo_mz,
264  std::vector<double> weights,
265  MODELTYPE md,
266  bool use_RANSAC);
267 
279  void getCoefficients(double& intercept, double& slope, double& power);
280 
284  void setCoefficients(const MZTrafoModel& rhs);
285 
297  void setCoefficients(double intercept, double slope, double power);
298 
305  String toString() const;
306 
307  }; // MZTrafoModel
308 
309 } // namespace OpenMS
310 
A helper class, holding all calibration points.
Definition: CalibrationData.h:65
Create and apply models of a mass recalibration function.
Definition: MZTrafoModel.h:67
MZTrafoModel()
Default constructor.
static void setRANSACParams(const Math::RANSACParam &p)
Set the global (program wide) parameters for RANSAC.
void getCoefficients(double &intercept, double &slope, double &power)
Get model coefficients.
double getRT() const
Get RT associated with the model (training region)
bool use_ppm_
during training, model is build on absolute or relative(ppm) predictions. predict(),...
Definition: MZTrafoModel.h:71
static void setCoefficientLimits(double offset, double scale, double power)
Set coefficient boundaries for which the model coefficient must not exceed to be considered a valid m...
String toString() const
String representation of the model parameters.
bool isTrained() const
Does the model have coefficients (i.e. was trained successfully).
static double limit_offset_
acceptable boundary for the estimated offset; if estimated offset is larger (absolute) the model does...
Definition: MZTrafoModel.h:76
MZTrafoModel(bool ppm_model)
Default constructor.
static double limit_power_
acceptable boundary for the estimated power; if estimated power is larger (absolute) the model does n...
Definition: MZTrafoModel.h:78
static int ransac_seed_
seed used for all RANSAC invocations
Definition: MZTrafoModel.h:75
double predict(double mz) const
Apply the model to an uncalibrated m/z value.
bool train(const CalibrationData &cd, MODELTYPE md, bool use_RANSAC, double rt_left=-std::numeric_limits< double >::max(), double rt_right=std::numeric_limits< double >::max())
Train a model using calibrant data.
void setCoefficients(double intercept, double slope, double power)
Manually set model coefficients.
static bool isValidModel(const MZTrafoModel &trafo)
Predicate to decide if the model has valid parameters, i.e. coefficients.
bool train(std::vector< double > error_mz, std::vector< double > theo_mz, std::vector< double > weights, MODELTYPE md, bool use_RANSAC)
Train a model using calibrant data.
void setCoefficients(const MZTrafoModel &rhs)
Copy model coefficients from another model.
static double limit_scale_
acceptable boundary for the estimated scale; if estimated scale is larger (absolute) the model does n...
Definition: MZTrafoModel.h:77
std::vector< double > coeff_
Model coefficients (for both linear and quadratic models), estimated from the data.
Definition: MZTrafoModel.h:70
static Size findNearest(const std::vector< MZTrafoModel > &tms, double rt)
Binary search for the model nearest to a specific RT.
double rt_
retention time associated to the model (i.e. where the calibrant data was taken from)
Definition: MZTrafoModel.h:72
static const std::string & enumToName(MODELTYPE mt)
Convert enum to string.
static Math::RANSACParam * ransac_params_
global pointer, init to NULL at startup; set class-global RANSAC params
Definition: MZTrafoModel.h:74
static MODELTYPE nameToEnum(const std::string &name)
Convert string to enum.
MODELTYPE
Definition: MZTrafoModel.h:99
@ LINEAR
Definition: MZTrafoModel.h:99
static void setRANSACSeed(int seed)
Set RANSAC seed.
A more convenient string class.
Definition: String.h:61
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
Comparator by position. As this class has dimension 1, this is basically an alias for MZLess.
Definition: MZTrafoModel.h:198
bool operator()(const double &left, const MZTrafoModel &right) const
Definition: MZTrafoModel.h:199
bool operator()(const MZTrafoModel &left, const double &right) const
Definition: MZTrafoModel.h:203
bool operator()(const MZTrafoModel &left, const MZTrafoModel &right) const
Definition: MZTrafoModel.h:207
A simple struct to carry all the parameters required for a RANSAC run.
Definition: RANSAC.h:59