All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
XFDRAlgorithm.h
Go to the documentation of this file.
1 // Copyright (c) 2002-present, OpenMS Inc. -- EKU Tuebingen, ETH Zurich, and FU Berlin
2 // SPDX-License-Identifier: BSD-3-Clause
3 //
4 // --------------------------------------------------------------------------
5 // $Maintainer: Eugen Netz $
6 // $Authors: Lukas Zimmermann, Eugen Netz $
7 // --------------------------------------------------------------------------
8 
9 #pragma once
10 
19 
20 namespace OpenMS
21 {
22 
23  //-------------------------------------------------------------
24  // Doxygen docu
25  //-------------------------------------------------------------
26 
38  class OPENMS_DLLAPI XFDRAlgorithm :
39  public DefaultParamHandler, public ProgressLogger
40  {
41 
42  public:
43 
45  enum ExitCodes
46  {
49  UNEXPECTED_RESULT
50  };
51 
54 
56  ~XFDRAlgorithm() override;
57 
66 
72 
73 private:
74  void updateMembers_() override;
75 
86 
92  static void assignTypes_(PeptideHit& pep_id, StringList& types);
93 
105  void fdr_xprophet_(std::map< String, Math::Histogram<> >& cum_histograms,
106  const String& targetclass, const String& decoyclass, const String& fulldecoyclass,
107  std::vector< double >& fdr, bool mono) const;
108 
114  static void calc_qfdr_(const std::vector< double >& fdr, std::vector< double >& qfdr);
115 
117 
118  void writeArgumentsLog_() const;
119 
120  String getId_(const PeptideHit& ph) const;
121 
123  {
124  Size alpha_ions = Size(ph.getMetaValue("matched_linear_alpha")) + Size(ph.getMetaValue("matched_xlink_alpha"));
125  Size beta_ions = Size(ph.getMetaValue("matched_linear_beta")) + Size(ph.getMetaValue("matched_xlink_beta"));
126  return std::min(alpha_ions, beta_ions);
127  }
128 
129  inline static void setIntraProtein_(PeptideHit& ph, const bool value)
130  {
131  ph.setMetaValue("XFDR:is_intraprotein", DataValue(value ? "true" : "false"));
132  }
133 
134  inline static void setInterProtein_(PeptideHit& ph, const bool value)
135  {
136  ph.setMetaValue("XFDR:is_interprotein", DataValue(value ? "true" : "false"));
137  }
138 
142  static bool isSameProtein_(
143  String prot1,
144  String prot2,
145  const String &decoy_string)
146  {
147  prot1.substitute(decoy_string, "");
148  prot2.substitute(decoy_string, "");
149  assert( ! prot1.hasSubstring(decoy_string));
150  assert( ! prot2.hasSubstring(decoy_string));
151  return prot1 == prot2;
152  }
153 
154  // Score range for this of the tool
157 
158  // unique top hits
159  std::vector<String> unique_ids_;
160  std::vector<double> unique_id_scores_;
161 
162  // maps index of peptide id all_pep_ids_ to vector of cross link class
163  std::map<String, std::vector<String>> cross_link_classes_;
164 
165  // Program arguments
174  double arg_binsize_;
175 
176  // Names of the class parameters
178  static const String param_minborder_;
179  static const String param_maxborder_;
180  static const String param_mindeltas_;
182  static const String param_uniquexl_;
183  static const String param_no_qvalues_;
184  static const String param_minscore_;
185  static const String param_binsize_;
186 
187  // Constants related to particular crosslink classes
200  };
201 }
Class to hold strings, numeric values, lists of strings and lists of numeric values.
Definition: DataValue.h:33
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:66
Representation of a histogram.
Definition: Histogram.h:38
void setMetaValue(const String &name, const DataValue &value)
Sets the DataValue corresponding to a name.
const DataValue & getMetaValue(const String &name) const
Returns the value corresponding to a string, or DataValue::EMPTY if not found.
Represents a single spectrum match (candidate) for a specific tandem mass spectrum (MS/MS).
Definition: PeptideHit.h:50
Container for peptide identifications from multiple spectra.
Definition: PeptideIdentificationList.h:66
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:27
Representation of a protein identification run.
Definition: ProteinIdentification.h:51
A more convenient string class.
Definition: String.h:34
bool hasSubstring(const String &string) const
true if String contains the string, false otherwise
String & substitute(char from, char to)
Replaces all occurrences of the character from by the character to.
Calculates false discovery rate estimates on crosslink identifications.
Definition: XFDRAlgorithm.h:40
static const String crosslink_class_intralinks_
Definition: XFDRAlgorithm.h:193
ExitCodes validateClassArguments() const
Checks whether the parameters of the object are valid.
bool arg_no_qvalues_
Definition: XFDRAlgorithm.h:173
static const String param_binsize_
Definition: XFDRAlgorithm.h:185
static const String crosslink_class_intradecoys_
Definition: XFDRAlgorithm.h:188
static const String crosslink_class_decoys_
Definition: XFDRAlgorithm.h:196
std::map< String, std::vector< String > > cross_link_classes_
Definition: XFDRAlgorithm.h:163
static void setIntraProtein_(PeptideHit &ph, const bool value)
Definition: XFDRAlgorithm.h:129
static const String crosslink_class_interdecoys_
Definition: XFDRAlgorithm.h:190
static void calc_qfdr_(const std::vector< double > &fdr, std::vector< double > &qfdr)
Calculates the qFDR values for the provided FDR values, assuming that the FDRs are sorted by score in...
static const String param_no_qvalues_
Definition: XFDRAlgorithm.h:183
void findTopUniqueHits_(PeptideIdentificationList &peptide_ids)
ExitCodes run(PeptideIdentificationList &peptide_ids, ProteinIdentification &protein_id)
Performs the main function of this class, the FDR estimation for cross-linked peptide experiments.
String decoy_string_
Definition: XFDRAlgorithm.h:166
static const String crosslink_class_targets_
Definition: XFDRAlgorithm.h:197
bool arg_uniquex_
Definition: XFDRAlgorithm.h:172
void fdr_xprophet_(std::map< String, Math::Histogram<> > &cum_histograms, const String &targetclass, const String &decoyclass, const String &fulldecoyclass, std::vector< double > &fdr, bool mono) const
xprophet method for target hits counting as implemented in xProphet
double arg_minscore_
Definition: XFDRAlgorithm.h:171
XFDRAlgorithm()
Default constructor.
static bool isSameProtein_(String prot1, String prot2, const String &decoy_string)
Determines whether the Peptide Evidences belong to the same protein, modulo decoy.
Definition: XFDRAlgorithm.h:142
double arg_mindeltas_
Definition: XFDRAlgorithm.h:167
static const String crosslink_class_fulldecoysinterlinks_
Definition: XFDRAlgorithm.h:191
static const String crosslink_class_hybriddecoysinterlinks_
Definition: XFDRAlgorithm.h:199
void initDataStructures_(PeptideIdentificationList &peptide_ids, ProteinIdentification &protein_id)
Prepares vector of PeptideIdentification such that it can be processed downstream....
static const String param_mindeltas_
Definition: XFDRAlgorithm.h:180
String getId_(const PeptideHit &ph) const
Int min_score_
Definition: XFDRAlgorithm.h:155
static const String crosslink_class_monolinks_
Definition: XFDRAlgorithm.h:195
static const String crosslink_class_hybriddecoysintralinks_
Definition: XFDRAlgorithm.h:198
std::vector< double > unique_id_scores_
Definition: XFDRAlgorithm.h:160
void writeArgumentsLog_() const
std::vector< String > unique_ids_
Definition: XFDRAlgorithm.h:159
static const String param_decoy_string_
Definition: XFDRAlgorithm.h:177
static Size getMinIonsMatched_(const PeptideHit &ph)
Definition: XFDRAlgorithm.h:122
static const String param_maxborder_
Definition: XFDRAlgorithm.h:179
static const String param_uniquexl_
Definition: XFDRAlgorithm.h:182
Int max_score_
Definition: XFDRAlgorithm.h:156
static void setInterProtein_(PeptideHit &ph, const bool value)
Definition: XFDRAlgorithm.h:134
static const String param_minborder_
Definition: XFDRAlgorithm.h:178
static const String param_minscore_
Definition: XFDRAlgorithm.h:184
void updateMembers_() override
This method is used to update extra member variables at the end of the setParameters() method.
static const String crosslink_class_fulldecoysintralinks_
Definition: XFDRAlgorithm.h:189
ExitCodes
Exit codes.
Definition: XFDRAlgorithm.h:46
@ ILLEGAL_PARAMETERS
Definition: XFDRAlgorithm.h:48
@ EXECUTION_OK
Definition: XFDRAlgorithm.h:47
static void assignTypes_(PeptideHit &pep_id, StringList &types)
Inspects a PeptideIdentification and assigns all cross-link types that this identification belongs to...
static const String crosslink_class_monodecoys_
Definition: XFDRAlgorithm.h:192
double arg_minborder_
Definition: XFDRAlgorithm.h:168
double arg_maxborder_
Definition: XFDRAlgorithm.h:169
Int arg_minionsmatched_
Definition: XFDRAlgorithm.h:170
static const String crosslink_class_interlinks_
Definition: XFDRAlgorithm.h:194
double arg_binsize_
Definition: XFDRAlgorithm.h:174
~XFDRAlgorithm() override
Default destructor.
static const String param_minionsmatched_
Definition: XFDRAlgorithm.h:181
int Int
Signed integer type.
Definition: Types.h:72
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:97
std::vector< String > StringList
Vector of String.
Definition: ListUtils.h:44
Main OpenMS namespace.
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19