OpenMS  2.8.0
ConfidenceScoring.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: Hendrik Weisser $
32 // $Authors: Hannes Roest, Hendrik Weisser $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
37 #include <cmath> // for "exp"
38 #include <limits> // for "infinity"
39 
45 
47 
48 namespace OpenMS
49 {
50 
51  class OPENMS_DLLAPI ConfidenceScoring :
52  public ProgressLogger
53  {
54  public:
55 
57  explicit ConfidenceScoring(bool test_mode_ = false);
58 
59  ~ConfidenceScoring() override {}
60 
61  protected:
62 
64  struct GLM_
65  {
66  double intercept;
67  double rt_coef;
68  double int_coef;
69 
70  double operator()(double diff_rt, double dist_int) const
71  {
72  double lm = intercept + rt_coef * diff_rt * diff_rt +
73  int_coef * dist_int;
74  return 1.0 / (1.0 + exp(-lm));
75  }
76  } glm_;
77 
79  struct RTNorm_
80  {
81  double min_rt;
82  double max_rt;
83 
84  double operator()(double rt) const
85  {
86  return (rt - min_rt) / (max_rt - min_rt) * 100;
87  }
88  } rt_norm_;
89 
91 
93 
95 
97 
99 
102 
104 
107 
110 
113 
118  double feature_rt, DoubleList& feature_intensities,
119  const std::set<String>& transition_ids = std::set<String>());
120 
122  void scoreFeature_(Feature& feature);
123 
124  public:
125 
126  void initialize(const TargetedExperiment& library, const Size n_decoys, const Size n_transitions, const TransformationDescription& rt_trafo)
127  {
128  library_ = library;
129  n_decoys_ = n_decoys;
130  n_transitions_ = n_transitions;
131  rt_trafo_ = rt_trafo;
132  }
133 
134  void initializeGlm(double intercept, double rt_coef, double int_coef)
135  {
136  glm_.intercept = intercept;
137  glm_.rt_coef = rt_coef;
138  glm_.int_coef = int_coef;
139  }
140 
153  void scoreMap(FeatureMap & features)
154  {
155  // are there enough assays in the library?
156  Size n_assays = library_.getPeptides().size();
157  if (n_assays < 2)
158  {
159  throw Exception::IllegalArgument(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION,
160  "There need to be at least 2 assays in the library for ConfidenceScoring.");
161 
162  }
163  if (n_assays - 1 < n_decoys_)
164  {
165  OPENMS_LOG_WARN << "Warning: Parameter 'decoys' (" << n_decoys_
166  << ") is higher than the number of unrelated assays in the "
167  << "library (" << n_assays - 1 << "). "
168  << "Using all unrelated assays as decoys." << std::endl;
169  }
170  if (n_assays - 1 <= n_decoys_) n_decoys_ = 0; // use all available assays
171 
172  decoy_index_.resize(n_assays);
173  for (Size i = 0; i < n_assays; ++i) decoy_index_[i] = boost::numeric_cast<Int>(i);
174 
175  // build mapping between assays and transitions:
176  OPENMS_LOG_DEBUG << "Building transition map..." << std::endl;
177  for (Size i = 0; i < library_.getTransitions().size(); ++i)
178  {
179  const String& ref = library_.getTransitions()[i].getPeptideRef();
180  transition_map_[ref].push_back(boost::numeric_cast<Int>(i));
181  }
182  // find min./max. RT in the library:
183  OPENMS_LOG_DEBUG << "Determining retention time range..." << std::endl;
184  rt_norm_.min_rt = std::numeric_limits<double>::infinity();
185  rt_norm_.max_rt = -std::numeric_limits<double>::infinity();
186  for (std::vector<TargetedExperiment::Peptide>::const_iterator it =
187  library_.getPeptides().begin(); it != library_.getPeptides().end();
188  ++it)
189  {
190  double current_rt = getAssayRT_(*it);
191  if (current_rt == -1.0) continue; // indicates a missing value
192  rt_norm_.min_rt = std::min(rt_norm_.min_rt, current_rt);
193  rt_norm_.max_rt = std::max(rt_norm_.max_rt, current_rt);
194  }
195 
196  // log scoring progress:
197  OPENMS_LOG_DEBUG << "Scoring features..." << std::endl;
198  startProgress(0, features.size(), "scoring features");
199 
200  for (FeatureMap::Iterator feat_it = features.begin();
201  feat_it != features.end(); ++feat_it)
202  {
203  OPENMS_LOG_DEBUG << "Feature " << feat_it - features.begin() + 1
204  << " (ID '" << feat_it->getUniqueId() << "')"<< std::endl;
205  scoreFeature_(*feat_it);
206  setProgress(feat_it - features.begin());
207  }
208  endProgress();
209 
210  }
211 
212  };
213 
214 }
215 
#define OPENMS_LOG_DEBUG
Macro for general debugging information.
Definition: LogStream.h:470
#define OPENMS_LOG_WARN
Macro if a warning, a piece of information which should be read by the user, should be logged.
Definition: LogStream.h:460
Definition: ConfidenceScoring.h:53
double scoreAssay_(const TargetedExperiment::Peptide &assay, double feature_rt, DoubleList &feature_intensities, const std::set< String > &transition_ids=std::set< String >())
void scoreMap(FeatureMap &features)
Score a feature map -> make sure the class is properly initialized.
Definition: ConfidenceScoring.h:153
void chooseDecoys_()
Randomize the list of decoy indexes.
TargetedExperiment library_
assay library
Definition: ConfidenceScoring.h:90
Math::RandomShuffler shuffler_
random shuffler for container
Definition: ConfidenceScoring.h:103
IntList decoy_index_
indexes of assays to use as decoys
Definition: ConfidenceScoring.h:92
Size n_decoys_
number of decoys to use (per feature/true assay)
Definition: ConfidenceScoring.h:94
double getAssayRT_(const TargetedExperiment::Peptide &assay)
Get the retention time of an assay.
~ConfidenceScoring() override
Definition: ConfidenceScoring.h:59
TransformationDescription rt_trafo_
RT transformation to map measured RTs to assay RTs.
Definition: ConfidenceScoring.h:101
double manhattanDist_(DoubleList x, DoubleList y)
Manhattan distance.
Map< String, IntList > transition_map_
assay (ID) -> transitions (indexes)
Definition: ConfidenceScoring.h:96
ConfidenceScoring(bool test_mode_=false)
Constructor.
void scoreFeature_(Feature &feature)
Score a feature.
void initializeGlm(double intercept, double rt_coef, double int_coef)
Definition: ConfidenceScoring.h:134
Size n_transitions_
number of transitions to consider
Definition: ConfidenceScoring.h:98
void initialize(const TargetedExperiment &library, const Size n_decoys, const Size n_transitions, const TransformationDescription &rt_trafo)
Definition: ConfidenceScoring.h:126
A method or algorithm argument contains illegal values.
Definition: Exception.h:650
A container for features.
Definition: FeatureMap.h:106
Base::iterator Iterator
Definition: FeatureMap.h:143
An LC-MS feature.
Definition: Feature.h:72
Map class based on the STL map (containing several convenience functions)
Definition: Map.h:52
Definition: MathFunctions.h:364
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:53
A more convenient string class.
Definition: String.h:60
Represents a peptide (amino acid sequence)
Definition: TargetedExperimentHelper.h:360
A description of a targeted experiment containing precursor and production ions.
Definition: TargetedExperiment.h:65
const std::vector< Peptide > & getPeptides() const
const std::vector< ReactionMonitoringTransition > & getTransitions() const
returns the transition list
Generic description of a coordinate transformation.
Definition: TransformationDescription.h:63
UInt64 getUniqueId() const
Non-mutable access to unique id - returns the unique id.
Definition: UniqueIdInterface.h:105
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
std::vector< Int > IntList
Vector of signed integers.
Definition: ListUtils.h:55
std::vector< double > DoubleList
Vector of double precision real types.
Definition: ListUtils.h:62
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
Binomial GLM.
Definition: ConfidenceScoring.h:65
double rt_coef
Definition: ConfidenceScoring.h:67
double int_coef
Definition: ConfidenceScoring.h:68
double operator()(double diff_rt, double dist_int) const
Definition: ConfidenceScoring.h:70
double intercept
Definition: ConfidenceScoring.h:66
Helper for RT normalization (range 0-100)
Definition: ConfidenceScoring.h:80
double min_rt
Definition: ConfidenceScoring.h:81
double max_rt
Definition: ConfidenceScoring.h:82
double operator()(double rt) const
Definition: ConfidenceScoring.h:84