Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages
OpenSwathScoring.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-2017.
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 $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
37 // data access
43 
44 // scoring
46 
47 #include <vector>
48 #include <boost/shared_ptr.hpp>
49 #include <boost/make_shared.hpp>
50 
51 namespace OpenMS
52 {
53 
58  struct OPENMS_DLLAPI OpenSwath_Scores_Usage
59  {
60  // Which scores to use
75 
77  use_coelution_score_(true),
78  use_shape_score_(true),
79  use_rt_score_(true),
80  use_library_score_(true),
81  use_elution_model_score_(true),
82  use_intensity_score_(true),
83  use_total_xic_score_(true),
84  use_nr_peaks_score_(true),
85  use_sn_score_(true),
86  use_dia_scores_(true),
87  use_sonar_scores(true),
88  use_ms1_correlation(true),
89  use_ms1_fullscan(true),
90  use_uis_scores(true)
91  {}
92 
93  };
94 
103  struct OPENMS_DLLAPI OpenSwath_Scores
104  {
106  double library_corr;
114  std::string ind_isotope_overlap;
116  std::string ind_massdev_score;
123  double log_sn_score;
124  std::string ind_log_sn_score;
126  std::string ind_transition_names;
127  std::string ind_area_intensity;
128  std::string ind_apex_intensity;
129  std::string ind_log_intensity;
130 
134 
140 
141  double sonar_sn;
142  double sonar_diff;
143  double sonar_trend;
144  double sonar_rsq;
145  double sonar_shape;
146  double sonar_lag;
147 
150  double intensity;
151  double total_xic;
152  double nr_peaks;
153  double sn_ratio;
154 
157  double raw_rt_score;
158 
161 
163  elution_model_fit_score(0),
164  library_corr(0),
165  library_norm_manhattan(0),
166  library_rootmeansquare(0),
167  library_sangle(0),
168  norm_rt_score(0),
169  isotope_correlation(0),
170  ind_isotope_correlation(""),
171  isotope_overlap(0),
172  ind_isotope_overlap(""),
173  massdev_score(0),
174  ind_massdev_score(""),
175  xcorr_coelution_score(0),
176  ind_xcorr_coelution_score(""),
177  xcorr_shape_score(0),
178  ind_xcorr_shape_score(""),
179  yseries_score(0),
180  bseries_score(0),
181  log_sn_score(0),
182  ind_log_sn_score(""),
183  ind_num_transitions(0),
184  ind_transition_names(""),
185  ind_log_intensity(""),
186  weighted_coelution_score(0),
187  weighted_xcorr_shape(0),
188  weighted_massdev_score(0),
189  xcorr_ms1_coelution_score(0),
190  xcorr_ms1_shape_score(0),
191  ms1_ppm_score(0),
192  ms1_isotope_correlation(0),
193  ms1_isotope_overlap(0),
194  sonar_sn(0),
195  sonar_diff(0),
196  sonar_trend(0),
197  sonar_rsq(0),
198  sonar_shape(0),
199  sonar_lag(0),
200  library_manhattan(0),
201  library_dotprod(0),
202  intensity(0),
203  total_xic(0),
204  nr_peaks(0),
205  sn_ratio(0),
206  dotprod_score_dia(0),
207  manhatt_score_dia(0)
208  {
209  }
210 
211 
212  double get_quick_lda_score(double library_corr_, double library_norm_manhattan_, double norm_rt_score_, double xcorr_coelution_score_,
213  double xcorr_shape_score_, double log_sn_score_)
214  {
215  // some scores based on manual evaluation of 80 chromatograms
216  // quick LDA average model on 100 2 x Crossvalidated runs (0.85 TPR/0.17 FDR)
217  // true: mean 4.2 with sd 1.055
218  // false: mean -0.07506772 with sd 1.055
219  // below -0.5 removes around 30% of the peaks
220  // below 0 removes around 50% of the peaks
221  // below 0.5 removes around 70% of the peaks
222  // below 1.0 removes around 85% of the peaks
223  // below 1.5 removes around 93% of the peaks
224  // below 2.0 removes around 97% of the peaks
225  //
226  // NOTE this score means "better" if it is more negative!
227  double lda_quick_score =
228  library_corr_ * -0.5319046 +
229  library_norm_manhattan_ * 2.1643962 +
230  norm_rt_score_ * 8.0353047 +
231  xcorr_coelution_score_ * 0.1458914 +
232  xcorr_shape_score_ * -1.6901925 +
233  log_sn_score_ * -0.8002824;
234  return lda_quick_score;
235  }
236 
238  {
239 
240  // LDA average model on 100 2 x Crossvalidated runs (0.91 TPR/0.20 FDR)
241  /*
242  double xx_old_lda_prescore =
243  intensity_score * -2.296679 +
244  library_corr * -0.1223876 +
245  library_norm_manhattan* 2.013638 +
246  nr_peaks_score * 0.01683357 +
247  rt_score * 0.00143999 +
248  sn_score * -0.1619762 +
249  total_xic_score * 0.00000003697898 +
250  xcorr_coelution_score * 0.05909583 +
251  xcorr_shape_score * -0.4699841;
252 
253  // NOTE this score means "better" if it is more negative!
254  */
255 
256  return scores.library_corr * -0.34664267 +
257  scores.library_norm_manhattan * 2.98700722 +
258  scores.norm_rt_score * 7.05496384 +
259  scores.xcorr_coelution_score * 0.09445371 +
260  scores.xcorr_shape_score * -5.71823862 +
261  scores.log_sn_score * -0.72989582 +
262  scores.elution_model_fit_score * 1.88443209;
263  }
264 
266  {
267  // Manually derived scoring model for single transition peakgroups
268  return scores.norm_rt_score * 7.05496384 +
269  scores.log_sn_score * -0.72989582 +
270  scores.elution_model_fit_score * -1.08443209;
271  }
272 
274  {
275 
276  // Swath - LDA average model on 100 2 x Crossvalidated runs (0.76 TPR/0.20 FDR) [without elution model]
277  /*
278  double xx_old_swath_prescore =
279  intensity_score * -3.148838e+00 +
280  library_corr * -7.562403e-02 +
281  library_norm_manhattan * 1.786286e+00 +
282  nr_peaks_score * -7.674263e-03 +
283  rt_score * 1.748377e-03 +
284  sn_score * -1.372636e-01 +
285  total_xic_score * 7.278437e-08 +
286  xcorr_coelution_score * 1.181813e-01 +
287  weighted_coelution_score * -7.661783e-02 +
288  xcorr_shape_score * -6.903933e-02 +
289  weighted_xcorr_shape * -4.234820e-01 +
290  bseries_score * -2.022380e-02 +
291  massdev_score * 2.844948e-02 +
292  massdev_score_weighted * 1.133209e-02 +
293  yseries_score * -9.510874e-02 +
294  isotope_corr * -1.619902e+00 +
295  isotope_overlap * 2.890688e-01 ;
296 
297  // NOTE this score means "better" if it is more negative!
298  */
299 
300  return scores.library_corr * -0.19011762 +
301  scores.library_norm_manhattan * 2.47298914 +
302  scores.norm_rt_score * 5.63906731 +
303  scores.isotope_correlation * -0.62640133 +
304  scores.isotope_overlap * 0.36006925 +
305  scores.massdev_score * 0.08814003 +
306  scores.xcorr_coelution_score * 0.13978311 +
307  scores.xcorr_shape_score * -1.16475032 +
308  scores.yseries_score * -0.19267813 +
309  scores.log_sn_score * -0.61712054;
310 
311 /*
312 
313 
314 Gold standard, best sample
315  main_var_xx_swath_prelim_score 0.291440015642621
316  var_bseries_score 0.0496492555026149
317  var_dotprod_score -0.522561744728316
318  var_elution_model_fit_score -1.99429446109581
319  var_intensity_score 1.70915451039584
320  var_isotope_correlation_score 0.966260829910062
321  var_isotope_overlap_score -14.216079147368
322  var_library_corr 0.061432632721274
323  var_library_dotprod -3.79958938222036
324  var_library_manhattan -1.36520528433508
325  var_library_norm_manhattan -6.44998534845163
326  var_log_sn_score -0.0389995774588385
327  var_manhatt_score -0.0944805864772705
328  var_massdev_score 0.0144460056621709
329  var_massdev_score_weighted -0.0494772144218002
330  var_norm_rt_score -9.04596725429934
331  var_xcorr_coelution -0.141763244951207
332  var_xcorr_coelution_weighted 0.00261409408565438
333  var_xcorr_shape 4.89741810577371
334  var_xcorr_shape_weighted 0.342723332762697
335  var_yseries_score -0.188316503432445
336 
337 
338 Strep Strep0_Repl2_R02/runlogs_mprophet.tar.gz
339 main_var_xx_swath_prelim_score 0.231523019269729
340 var_bseries_score -0.0488528503276347
341 var_elution_model_fit_score -0.47977060647858
342 var_intensity_score -0.80664074459128
343 var_isotope_correlation_score 2.34488326031997
344 var_isotope_overlap_score -2.14735763746488
345 var_library_corr -0.395167010986141
346 var_library_norm_manhattan -13.1295053007338
347 var_log_sn_score 0.265784828465348
348 var_massdev_score 0.0150193500103614
349 var_massdev_score_weighted -0.109859906028132
350 var_norm_rt_score -25.7107556062008
351 var_xcorr_coelution 0.244590396074410
352 var_xcorr_coelution_weighted -0.918578472543494
353 var_xcorr_shape 2.18720521365230
354 var_xcorr_shape_weighted -0.815295893352108
355 var_yseries_score -0.0620070175846356
356 
357 Strep10_Repl2_R02/runlogs_mprophet.tar.gz
358 main_var_xx_swath_prelim_score 0.293470108599468
359 var_bseries_score -0.0129641361717189
360 var_elution_model_fit_score -0.44993587229358
361 var_intensity_score -0.828540564651968
362 var_isotope_correlation_score 2.76284687671386
363 var_isotope_overlap_score -2.26460097307479
364 var_library_corr -0.445369627383142
365 var_library_norm_manhattan -13.2905041886848
366 var_log_sn_score 0.224626177093898
367 var_massdev_score 0.0185003919755981
368 var_massdev_score_weighted -0.0899477179756381
369 var_norm_rt_score -24.4807649346717
370 var_xcorr_coelution 0.218195211767293
371 var_xcorr_coelution_weighted -0.91949559943762
372 var_xcorr_shape 1.77358514815991
373 var_xcorr_shape_weighted -0.616535104461374
374 var_yseries_score -0.0652111196389966
375 
376 
377 
378 
379 // FINAL AQUA gold standard classifier
380 human
381 main_var_xx_swath_prelim_score 0.4384384475524
382 var_bseries_score 0.00227405501436837
383 var_elution_model_fit_score -2.06412570248571
384 var_intensity_score -1.26021147555789
385 var_isotope_correlation_score 1.21887083303546
386 var_isotope_overlap_score -1.60051046353231
387 var_library_corr -0.33958843974352
388 var_library_norm_manhattan -5.20235596662978
389 var_log_sn_score 0.24021015633787
390 var_massdev_score 0.0399855393620327
391 var_massdev_score_weighted -0.0907785715261295
392 var_norm_rt_score -16.2155920223681
393 var_xcorr_coelution 0.0805852135076143
394 var_xcorr_coelution_weighted -0.387927719728573
395 var_xcorr_shape 1.885899937033
396 var_xcorr_shape_weighted 2.45579580649067
397 var_yseries_score 0.138306574987678
398 
399 yeast
400 main_var_xx_swath_prelim_score 0.369009421609329
401 var_bseries_score 0.0157508674154482
402 var_elution_model_fit_score -1.67348268698707
403 var_intensity_score -1.11972743418717
404 var_isotope_correlation_score 1.68717154416093
405 var_isotope_overlap_score -1.38410070381813
406 var_library_corr -0.454409692201745
407 var_library_norm_manhattan -6.08160902837145
408 var_log_sn_score 0.157259477914274
409 var_massdev_score 0.0543919580711367
410 var_massdev_score_weighted -0.137296627160332
411 var_norm_rt_score -28.4381743938298
412 var_xcorr_coelution 0.0256469469673884
413 var_xcorr_coelution_weighted -0.362865323100099
414 var_xcorr_shape 1.88863198062243
415 var_xcorr_shape_weighted 1.3518953353109
416 var_yseries_score 0.115472572686466
417 
418 water
419 main_var_xx_swath_prelim_score 0.174880281226536
420 var_bseries_score -0.0606466737704899
421 var_elution_model_fit_score -0.123252502705892
422 var_intensity_score 1.91714146537607
423 var_isotope_correlation_score 0.914387652486204
424 var_isotope_overlap_score -1.46521560409083
425 var_library_corr -0.485498555013885
426 var_library_norm_manhattan -8.3847526088391
427 var_log_sn_score 0.00644514889704832
428 var_massdev_score 0.0177435175558717
429 var_massdev_score_weighted -0.0899451169038299
430 var_norm_rt_score -15.1458716759687
431 var_xcorr_coelution -0.370050235089866
432 var_xcorr_coelution_weighted 0.21512520647974
433 var_xcorr_shape 0.563413547839886
434 var_xcorr_shape_weighted -0.270773625703933
435 var_yseries_score -0.0327896378737766
436 
437 
438 
439 */
440  }
441 
442  };
443 
449  class OPENMS_DLLAPI OpenSwathScoring
450  {
453 
458 
459  public:
460 
463 
465  ~OpenSwathScoring();
466 
477  void initialize(double rt_normalization_factor,
478  int add_up_spectra, double spacing_for_spectra_resampling,
480 
498  void calculateChromatographicScores(
499  OpenSwath::IMRMFeature* imrmfeature,
500  const std::vector<std::string>& native_ids,
501  const std::string& precursor_chrom_id,
502  const std::vector<double>& normalized_library_intensity,
503  std::vector<OpenSwath::ISignalToNoisePtr>& signal_noise_estimators,
504  OpenSwath_Scores & scores);
505 
524  void calculateChromatographicIdScores(
525  OpenSwath::IMRMFeature* imrmfeature,
526  const std::vector<std::string>& native_ids_identification,
527  const std::vector<std::string>& native_ids_detection,
528  std::vector<OpenSwath::ISignalToNoisePtr>& signal_noise_estimators,
529  OpenSwath_Scores & scores);
530 
546  void calculateLibraryScores(
547  OpenSwath::IMRMFeature* imrmfeature,
548  const std::vector<TransitionType> & transitions,
549  const CompoundType& compound,
550  const double normalized_feature_rt,
551  OpenSwath_Scores & scores);
552 
566  void calculateDIAScores(OpenSwath::IMRMFeature* imrmfeature,
567  const std::vector<TransitionType> & transitions,
568  std::vector<OpenSwath::SwathMap> swath_maps,
570  OpenMS::DIAScoring & diascoring,
571  const CompoundType& compound,
572  OpenSwath_Scores & scores);
573 
585  void calculatePrecursorDIAScores(OpenSwath::SpectrumAccessPtr ms1_map,
586  OpenMS::DIAScoring & diascoring,
587  double precursor_mz,
588  double rt,
589  const CompoundType& compound,
590  OpenSwath_Scores & scores);
591 
603  void calculateDIAIdScores(OpenSwath::IMRMFeature* imrmfeature,
604  const TransitionType & transition,
605  std::vector<OpenSwath::SwathMap> swath_maps,
606  OpenMS::DIAScoring & diascoring,
607  OpenSwath_Scores & scores);
608 
617  void getNormalized_library_intensities_(const std::vector<TransitionType> & transitions,
618  std::vector<double>& normalized_library_intensity);
619 
631  OpenSwath::SpectrumPtr getAddedSpectra_(OpenSwath::SpectrumAccessPtr swath_map,
632  double RT, int nr_spectra_to_add);
633 
646  OpenSwath::SpectrumPtr getAddedSpectra_(std::vector<OpenSwath::SwathMap> swath_maps,
647  double RT, int nr_spectra_to_add);
648 
649  };
650 }
651 
double dotprod_score_dia
Definition: OpenSwathScoring.h:159
double isotope_overlap
Definition: OpenSwathScoring.h:113
double xcorr_ms1_coelution_score
Definition: OpenSwathScoring.h:135
double isotope_correlation
Definition: OpenSwathScoring.h:111
bool use_dia_scores_
Definition: OpenSwathScoring.h:70
std::string ind_apex_intensity
Definition: OpenSwathScoring.h:128
bool use_nr_peaks_score_
Definition: OpenSwathScoring.h:68
bool use_uis_scores
Definition: OpenSwathScoring.h:74
std::string ind_log_sn_score
Definition: OpenSwathScoring.h:124
double weighted_coelution_score
Definition: OpenSwathScoring.h:131
double sonar_lag
Definition: OpenSwathScoring.h:146
boost::shared_ptr< ISpectrumAccess > SpectrumAccessPtr
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:89
double sonar_trend
Definition: OpenSwathScoring.h:143
double rt_normalization_factor_
Definition: OpenSwathScoring.h:454
double spacing_for_spectra_resampling_
Definition: OpenSwathScoring.h:456
bool use_elution_model_score_
Definition: OpenSwathScoring.h:65
A class that calls the scoring routines.
Definition: OpenSwathScoring.h:449
double get_quick_lda_score(double library_corr_, double library_norm_manhattan_, double norm_rt_score_, double xcorr_coelution_score_, double xcorr_shape_score_, double log_sn_score_)
Definition: OpenSwathScoring.h:212
OpenSwath_Scores_Usage()
Definition: OpenSwathScoring.h:76
double sn_ratio
Definition: OpenSwathScoring.h:153
boost::shared_ptr< Spectrum > SpectrumPtr
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/DataStructures.h:270
double weighted_xcorr_shape
Definition: OpenSwathScoring.h:132
bool use_ms1_fullscan
Definition: OpenSwathScoring.h:73
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
int add_up_spectra_
Definition: OpenSwathScoring.h:455
std::string ind_log_intensity
Definition: OpenSwathScoring.h:129
double total_xic
Definition: OpenSwathScoring.h:151
std::string ind_area_intensity
Definition: OpenSwathScoring.h:127
double xcorr_ms1_shape_score
Definition: OpenSwathScoring.h:136
bool use_library_score_
Definition: OpenSwathScoring.h:64
double raw_rt_score
Definition: OpenSwathScoring.h:157
OpenSwath_Scores()
Definition: OpenSwathScoring.h:162
double library_manhattan
Definition: OpenSwathScoring.h:148
double library_sangle
Definition: OpenSwathScoring.h:109
double sonar_sn
Definition: OpenSwathScoring.h:141
double normalized_experimental_rt
Definition: OpenSwathScoring.h:156
std::string ind_isotope_correlation
Definition: OpenSwathScoring.h:112
double ms1_isotope_correlation
Definition: OpenSwathScoring.h:138
double ms1_ppm_score
Definition: OpenSwathScoring.h:137
std::string ind_xcorr_coelution_score
Definition: OpenSwathScoring.h:118
bool use_sn_score_
Definition: OpenSwathScoring.h:69
double log_sn_score
Definition: OpenSwathScoring.h:123
Scoring of an spectrum at the peak apex of an chromatographic elution peak.
Definition: DIAScoring.h:83
double massdev_score
Definition: OpenSwathScoring.h:115
double yseries_score
Definition: OpenSwathScoring.h:121
std::string ind_massdev_score
Definition: OpenSwathScoring.h:116
double sonar_diff
Definition: OpenSwathScoring.h:142
Definition: TransitionExperiment.h:149
double manhatt_score_dia
Definition: OpenSwathScoring.h:160
double ms1_isotope_overlap
Definition: OpenSwathScoring.h:139
double calculate_lda_single_transition(OpenSwath_Scores scores)
Definition: OpenSwathScoring.h:265
double xcorr_coelution_score
Definition: OpenSwathScoring.h:117
bool use_sonar_scores
Definition: OpenSwathScoring.h:71
Definition: TransitionExperiment.h:46
std::string ind_xcorr_shape_score
Definition: OpenSwathScoring.h:120
A structure to store which scores should be used by the Algorithm.
Definition: OpenSwathScoring.h:58
Definition: ITransition.h:55
std::string ind_isotope_overlap
Definition: OpenSwathScoring.h:114
OpenSwath::LightTransition TransitionType
Definition: OpenSwathScoring.h:452
A structure to hold the different scores computed by OpenSWATH.
Definition: OpenSwathScoring.h:103
double library_norm_manhattan
Definition: OpenSwathScoring.h:107
double sonar_shape
Definition: OpenSwathScoring.h:145
OpenSwath_Scores_Usage su_
Definition: OpenSwathScoring.h:457
double xcorr_shape_score
Definition: OpenSwathScoring.h:119
double calculate_swath_lda_prescore(OpenSwath_Scores scores)
Definition: OpenSwathScoring.h:273
bool use_ms1_correlation
Definition: OpenSwathScoring.h:72
double norm_rt_score
Definition: OpenSwathScoring.h:110
OpenSwath::LightCompound CompoundType
Definition: OpenSwathScoring.h:451
double rt_difference
Definition: OpenSwathScoring.h:155
std::string ind_transition_names
Definition: OpenSwathScoring.h:126
double library_rootmeansquare
Definition: OpenSwathScoring.h:108
double elution_model_fit_score
Definition: OpenSwathScoring.h:105
double weighted_massdev_score
Definition: OpenSwathScoring.h:133
double intensity
Definition: OpenSwathScoring.h:150
double sonar_rsq
Definition: OpenSwathScoring.h:144
int ind_num_transitions
Definition: OpenSwathScoring.h:125
bool use_rt_score_
Definition: OpenSwathScoring.h:63
double bseries_score
Definition: OpenSwathScoring.h:122
double library_dotprod
Definition: OpenSwathScoring.h:149
double library_corr
Definition: OpenSwathScoring.h:106
double nr_peaks
Definition: OpenSwathScoring.h:152
bool use_intensity_score_
Definition: OpenSwathScoring.h:66
bool use_coelution_score_
Definition: OpenSwathScoring.h:61
bool use_total_xic_score_
Definition: OpenSwathScoring.h:67
double calculate_lda_prescore(OpenSwath_Scores scores)
Definition: OpenSwathScoring.h:237
bool use_shape_score_
Definition: OpenSwathScoring.h:62

OpenMS / TOPP release 2.3.0 Documentation generated on Wed Apr 18 2018 19:29:07 using doxygen 1.8.14