OpenMS
MRMAssay.h
Go to the documentation of this file.
1 // Copyright (c) 2002-2023, The OpenMS Team -- EKU Tuebingen, ETH Zurich, and FU Berlin
2 // SPDX-License-Identifier: BSD-3-Clause
3 //
4 // --------------------------------------------------------------------------
5 // $Maintainer: George Rosenberger $
6 // $Authors: George Rosenberger $
7 // --------------------------------------------------------------------------
8 
9 #pragma once
10 
15 
16 #include <boost/random/mersenne_twister.hpp>
17 #include <boost/random/uniform_int.hpp>
18 #include <boost/random/variate_generator.hpp>
19 #include <boost/unordered_map.hpp> // cannot remove this since tests fail otherwise
20 
21 // #define DEBUG_MRMASSAY
22 
23 namespace OpenMS
24 {
40  class OPENMS_DLLAPI MRMAssay :
41  public ProgressLogger
42  {
43 
44 public:
46  MRMAssay(); // empty, no members
48 
50  ~MRMAssay() override;
52 
53  typedef std::vector<OpenMS::TargetedExperiment::Protein> ProteinVectorType;
54  typedef std::vector<OpenMS::TargetedExperiment::Peptide> PeptideVectorType;
55  typedef std::vector<OpenMS::TargetedExperiment::Compound> CompoundVectorType;
56  typedef std::vector<OpenMS::ReactionMonitoringTransition> TransitionVectorType;
57 
58  typedef std::map<String, std::vector<const ReactionMonitoringTransition*> > PeptideTransitionMapType;
59  typedef std::map<String, std::vector<const ReactionMonitoringTransition*> > CompoundTransitionMapType;
60 
61  typedef boost::unordered_map<String, std::set<std::string> > ModifiedSequenceMap;
62  typedef boost::unordered_map<size_t, ModifiedSequenceMap> SequenceMapT;
63 
64  typedef std::vector<std::pair<double, std::string> > FragmentSeqMap;
65  typedef boost::unordered_map<size_t, boost::unordered_map<String, FragmentSeqMap > > IonMapT;
66 
67  typedef std::vector<std::pair<std::string, double> > IonSeries;
68  typedef std::map<String, IonSeries > PeptideMapT;
69 
70  typedef boost::unordered_map<String, TargetedExperiment::Peptide> TargetDecoyMapT;
71 
86  double precursor_mz_threshold,
87  double product_mz_threshold,
88  const std::vector<String>& fragment_types,
89  const std::vector<size_t>& fragment_charges,
90  bool enable_specific_losses,
91  bool enable_unspecific_losses,
92  int round_decPow = -4);
93 
105  double lower_mz_limit, double upper_mz_limit,
106  const std::vector<std::pair<double, double> >& swathes);
107 
116  void detectingTransitions(OpenMS::TargetedExperiment& exp, int min_transitions, int max_transitions);
117 
152  const std::vector<String>& fragment_types,
153  const std::vector<size_t>& fragment_charges,
154  bool enable_specific_losses,
155  bool enable_unspecific_losses,
156  bool enable_ms2_precursors,
157  double mz_threshold,
158  const std::vector<std::pair<double, double> >& swathes,
159  int round_decPow = -4,
160  size_t max_num_alternative_localizations = 20,
161  int shuffle_seed = -1,
162  bool disable_decoy_transitions = false);
163 
172  void filterMinMaxTransitionsCompound(OpenMS::TargetedExperiment& exp, int min_transitions, int max_transitions);
173 
188 
189 protected:
190 
200  std::vector<std::string> getMatchingPeptidoforms_(const double fragment_ion,
201  const FragmentSeqMap& ions,
202  const double mz_threshold);
203 
212  int getSwath_(const std::vector<std::pair<double, double> >& swathes, const double precursor_mz);
213 
223  bool isInSwath_(const std::vector<std::pair<double, double> >& swathes, const double precursor_mz, const double product_mz);
224 
233  std::string getRandomSequence_(size_t sequence_size, boost::variate_generator<boost::mt19937&, boost::uniform_int<> > pseudoRNG);
234 
243  std::vector<std::vector<size_t> > nchoosekcombinations_(const std::vector<size_t>& n, size_t k);
244 
254  std::vector<OpenMS::AASequence> addModificationsSequences_(const std::vector<OpenMS::AASequence>& sequences,
255  const std::vector<std::vector<size_t> >& mods_combs,
256  const OpenMS::String& modification);
257 
269  std::vector<OpenMS::AASequence> generateTheoreticalPeptidoforms_(const OpenMS::AASequence& sequence);
270 
288  std::vector<OpenMS::AASequence> generateTheoreticalPeptidoformsDecoy_(const OpenMS::AASequence& sequence, const OpenMS::AASequence& decoy_sequence);
289 
304  const std::vector<String>& fragment_types,
305  const std::vector<size_t>& fragment_charges,
306  bool enable_specific_losses,
307  bool enable_unspecific_losses,
308  bool enable_ms2_precursors,
309  const std::vector<std::pair<double, double> >& swathes,
310  int round_decPow,
311  size_t max_num_alternative_localizations,
312  SequenceMapT& TargetSequenceMap,
313  IonMapT& TargetIonMap,
314  PeptideMapT& TargetPeptideMap);
315 
325  void generateDecoySequences_(const SequenceMapT& TargetSequenceMap,
326  boost::unordered_map<String, String>& DecoySequenceMap,
327  int shuffle_seed);
328 
341  const std::vector<String>& fragment_types,
342  const std::vector<size_t>& fragment_charges,
343  bool enable_specific_losses,
344  bool enable_unspecific_losses,
345  bool enable_ms2_precursors,
346  const std::vector<std::pair<double, double> >& swathes,
347  int round_decPow,
348  TargetDecoyMapT& TargetDecoyMap,
349  PeptideMapT& TargetPeptideMap,
350  boost::unordered_map<String, String>& DecoySequenceMap,
351  IonMapT& DecoyIonMap,
352  PeptideMapT& DecoyPeptideMap);
353 
373  TransitionVectorType& transitions,
374  double mz_threshold,
375  const std::vector<std::pair<double, double> >& swathes,
376  int round_decPow,
377  const PeptideMapT& TargetPeptideMap,
378  const IonMapT& TargetIonMap);
379 
387  TransitionVectorType& transitions,
388  double mz_threshold,
389  const std::vector<std::pair<double, double> >& swathes,
390  int round_decPow,
391  const PeptideMapT& DecoyPeptideMap,
392  TargetDecoyMapT& TargetDecoyMap,
393  const IonMapT& DecoyIonMap,
394  const IonMapT& TargetIonMap);
395 
396  };
397 }
Representation of a peptide/protein sequence.
Definition: AASequence.h:86
Generate assays from a TargetedExperiment.
Definition: MRMAssay.h:42
void generateTargetAssays_(const OpenMS::TargetedExperiment &exp, TransitionVectorType &transitions, double mz_threshold, const std::vector< std::pair< double, double > > &swathes, int round_decPow, const PeptideMapT &TargetPeptideMap, const IonMapT &TargetIonMap)
Generate target identification transitions.
std::vector< OpenMS::AASequence > generateTheoreticalPeptidoformsDecoy_(const OpenMS::AASequence &sequence, const OpenMS::AASequence &decoy_sequence)
Generate alternative modified peptide forms according to ModificationsDB.
std::vector< OpenMS::TargetedExperiment::Compound > CompoundVectorType
Definition: MRMAssay.h:55
std::vector< std::vector< size_t > > nchoosekcombinations_(const std::vector< size_t > &n, size_t k)
Computes all N choose K combinations.
void generateDecoyInSilicoMap_(const OpenMS::TargetedExperiment &exp, const std::vector< String > &fragment_types, const std::vector< size_t > &fragment_charges, bool enable_specific_losses, bool enable_unspecific_losses, bool enable_ms2_precursors, const std::vector< std::pair< double, double > > &swathes, int round_decPow, TargetDecoyMapT &TargetDecoyMap, PeptideMapT &TargetPeptideMap, boost::unordered_map< String, String > &DecoySequenceMap, IonMapT &DecoyIonMap, PeptideMapT &DecoyPeptideMap)
Generate decoy in silico map.
void detectingTransitions(OpenMS::TargetedExperiment &exp, int min_transitions, int max_transitions)
Select detecting fragment ions.
std::vector< OpenMS::AASequence > addModificationsSequences_(const std::vector< OpenMS::AASequence > &sequences, const std::vector< std::vector< size_t > > &mods_combs, const OpenMS::String &modification)
Generate modified peptide forms based on all possible combinations.
std::map< String, std::vector< const ReactionMonitoringTransition * > > CompoundTransitionMapType
Definition: MRMAssay.h:59
void restrictTransitions(OpenMS::TargetedExperiment &exp, double lower_mz_limit, double upper_mz_limit, const std::vector< std::pair< double, double > > &swathes)
Restrict and filter transitions in a TargetedExperiment.
std::map< String, std::vector< const ReactionMonitoringTransition * > > PeptideTransitionMapType
Definition: MRMAssay.h:58
int getSwath_(const std::vector< std::pair< double, double > > &swathes, const double precursor_mz)
Get swath index (precursor isolation window ordinal) for a particular precursor.
boost::unordered_map< size_t, boost::unordered_map< String, FragmentSeqMap > > IonMapT
Stores a mapping : "unmodified sequence" -> FragmentSeqMap for all SWATH windows.
Definition: MRMAssay.h:65
void generateDecoyAssays_(const OpenMS::TargetedExperiment &exp, TransitionVectorType &transitions, double mz_threshold, const std::vector< std::pair< double, double > > &swathes, int round_decPow, const PeptideMapT &DecoyPeptideMap, TargetDecoyMapT &TargetDecoyMap, const IonMapT &DecoyIonMap, const IonMapT &TargetIonMap)
Generate decoy assays.
std::vector< OpenMS::ReactionMonitoringTransition > TransitionVectorType
Definition: MRMAssay.h:56
std::vector< std::pair< double, std::string > > FragmentSeqMap
Describes a fragment sequence map of : "fragment m/z" -> "modified sequence".
Definition: MRMAssay.h:64
void generateTargetInSilicoMap_(const OpenMS::TargetedExperiment &exp, const std::vector< String > &fragment_types, const std::vector< size_t > &fragment_charges, bool enable_specific_losses, bool enable_unspecific_losses, bool enable_ms2_precursors, const std::vector< std::pair< double, double > > &swathes, int round_decPow, size_t max_num_alternative_localizations, SequenceMapT &TargetSequenceMap, IonMapT &TargetIonMap, PeptideMapT &TargetPeptideMap)
Generate target in silico map.
std::string getRandomSequence_(size_t sequence_size, boost::variate_generator< boost::mt19937 &, boost::uniform_int<> > pseudoRNG)
Generates random peptide sequence.
std::vector< OpenMS::TargetedExperiment::Peptide > PeptideVectorType
Definition: MRMAssay.h:54
std::vector< std::pair< std::string, double > > IonSeries
Describes an ion series: "ion_type" -> "fragment m/z".
Definition: MRMAssay.h:67
std::vector< OpenMS::AASequence > generateTheoreticalPeptidoforms_(const OpenMS::AASequence &sequence)
Generate alternative modified peptide forms according to ModificationsDB.
void filterMinMaxTransitionsCompound(OpenMS::TargetedExperiment &exp, int min_transitions, int max_transitions)
Filters target and decoy transitions by intensity, only keeping the top N transitions.
void generateDecoySequences_(const SequenceMapT &TargetSequenceMap, boost::unordered_map< String, String > &DecoySequenceMap, int shuffle_seed)
Generate decoy sequences.
std::map< String, IonSeries > PeptideMapT
Maps a peptide sequence to an ion series: "ion_type" -> "fragment m/z".
Definition: MRMAssay.h:68
boost::unordered_map< size_t, ModifiedSequenceMap > SequenceMapT
Stores the ModifiedSequenceMap for all SWATH windows.
Definition: MRMAssay.h:62
void filterUnreferencedDecoysCompound(OpenMS::TargetedExperiment &exp)
Filters decoy transitions, which do not have respective target transition based on the transitionID.
std::vector< OpenMS::TargetedExperiment::Protein > ProteinVectorType
Definition: MRMAssay.h:53
void uisTransitions(OpenMS::TargetedExperiment &exp, const std::vector< String > &fragment_types, const std::vector< size_t > &fragment_charges, bool enable_specific_losses, bool enable_unspecific_losses, bool enable_ms2_precursors, double mz_threshold, const std::vector< std::pair< double, double > > &swathes, int round_decPow=-4, size_t max_num_alternative_localizations=20, int shuffle_seed=-1, bool disable_decoy_transitions=false)
Annotate UIS / site-specific transitions.
void reannotateTransitions(OpenMS::TargetedExperiment &exp, double precursor_mz_threshold, double product_mz_threshold, const std::vector< String > &fragment_types, const std::vector< size_t > &fragment_charges, bool enable_specific_losses, bool enable_unspecific_losses, int round_decPow=-4)
Annotates and filters transitions in a TargetedExperiment.
std::vector< std::string > getMatchingPeptidoforms_(const double fragment_ion, const FragmentSeqMap &ions, const double mz_threshold)
Check whether fragment ion are unique ion signatures in vector within threshold and return matching p...
bool isInSwath_(const std::vector< std::pair< double, double > > &swathes, const double precursor_mz, const double product_mz)
Check whether the product m/z of a transition falls into the precursor isolation window.
~MRMAssay() override
Destructor.
boost::unordered_map< String, TargetedExperiment::Peptide > TargetDecoyMapT
Maps the peptide id (same for target and decoy) to the decoy peptide object.
Definition: MRMAssay.h:70
boost::unordered_map< String, std::set< std::string > > ModifiedSequenceMap
Maps an unmodified sequence to all its modified sequences.
Definition: MRMAssay.h:61
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:27
A more convenient string class.
Definition: String.h:34
A description of a targeted experiment containing precursor and production ions.
Definition: TargetedExperiment.h:39
const double k
Definition: Constants.h:132
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:22