Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages
MRMAssay.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: George Rosenberger $
32 // $Authors: George Rosenberger $
33 // --------------------------------------------------------------------------
34 
35 #ifndef OPENMS_ANALYSIS_OPENSWATH_MRMASSAY_H
36 #define OPENMS_ANALYSIS_OPENSWATH_MRMASSAY_H
37 
43 
44 #include <boost/bind.hpp>
45 #include <boost/lexical_cast.hpp>
46 #include <boost/random/mersenne_twister.hpp>
47 #include <boost/random/uniform_int.hpp>
48 #include <boost/random/variate_generator.hpp>
49 
50 // #define DEBUG_MRMASSAY
51 
52 namespace OpenMS
53 {
67  class OPENMS_DLLAPI MRMAssay :
68  public ProgressLogger
69  {
70 
71 public:
73  MRMAssay(); // empty, no members
75 
77  ~MRMAssay();
79 
80  typedef std::vector<OpenMS::TargetedExperiment::Protein> ProteinVectorType;
81  typedef std::vector<OpenMS::TargetedExperiment::Peptide> PeptideVectorType;
82  typedef std::vector<OpenMS::ReactionMonitoringTransition> TransitionVectorType;
83 
84  typedef boost::unordered_map<size_t, boost::unordered_map<String, std::set<std::string> > > SequenceMapT;
85  typedef boost::unordered_map<size_t, boost::unordered_map<String, std::vector<std::pair<double, std::string> > > > IonMapT;
86  typedef std::map<String, std::vector<std::pair<std::string, double> > > PeptideMapT;
87  typedef boost::unordered_map<String, String> SequenceMap_T;
88 
89  typedef boost::unordered_map<String, TargetedExperiment::Peptide> TargetDecoyMapT;
90 
105  void reannotateTransitions(OpenMS::TargetedExperiment& exp, double precursor_mz_threshold, double product_mz_threshold, std::vector<String> fragment_types, std::vector<size_t> fragment_charges, bool enable_reannotation, bool enable_specific_losses, bool enable_unspecific_losses, int round_decPow = -4);
106 
117  void restrictTransitions(OpenMS::TargetedExperiment& exp, double lower_mz_limit, double upper_mz_limit, std::vector<std::pair<double, double> > swathes);
118 
127  void detectingTransitions(OpenMS::TargetedExperiment& exp, int min_transitions, int max_transitions);
128 
144  void uisTransitions(OpenMS::TargetedExperiment& exp,
145  std::vector<String> fragment_types,
146  std::vector<size_t> fragment_charges,
147  bool enable_specific_losses,
148  bool enable_unspecific_losses,
149  bool enable_ms2_precursors,
150  double mz_threshold,
151  std::vector<std::pair<double, double> > swathes,
152  int round_decPow = -4,
153  size_t max_num_alternative_localizations = 20,
154  int shuffle_seed = -1);
155 
156 protected:
166  std::vector<std::string> getMatchingPeptidoforms_(const double fragment_ion,
167  const std::vector<std::pair<double, std::string> >& ions,
168  const double mz_threshold);
169 
178  int getSwath_(const std::vector<std::pair<double, double> > swathes, const double precursor_mz);
179 
189  bool isInSwath_(const std::vector<std::pair<double, double> > swathes, const double precursor_mz, const double product_mz);
190 
199  std::string getRandomSequence_(size_t sequence_size, boost::variate_generator<boost::mt19937&, boost::uniform_int<> > pseudoRNG);
200 
209  std::vector<std::vector<size_t> > nchoosekcombinations_(std::vector<size_t> n, size_t k);
210 
222  std::vector<OpenMS::AASequence> addModificationsSequences_(std::vector<OpenMS::AASequence> sequences, std::vector<std::vector<size_t> > mods_combs, OpenMS::String modification);
223 
235  std::vector<OpenMS::AASequence> combineModifications_(OpenMS::AASequence sequence);
236 
254  std::vector<OpenMS::AASequence> combineDecoyModifications_(OpenMS::AASequence sequence, OpenMS::AASequence decoy_sequence);
255 
262  void generateTargetInSilicoMap_(OpenMS::TargetedExperiment& exp,
263  std::vector<String> fragment_types,
264  std::vector<size_t> fragment_charges,
265  bool enable_specific_losses,
266  bool enable_unspecific_losses,
267  bool enable_ms2_precursors,
268  std::vector<std::pair<double, double> > swathes,
269  int round_decPow,
270  size_t max_num_alternative_localizations,
271  SequenceMapT& TargetSequenceMap,
272  IonMapT& TargetIonMap,
273  PeptideMapT& TargetPeptideMap);
274 
281  void generateDecoySequences_(boost::unordered_map<size_t,
282  boost::unordered_map<String, std::set<std::string> > >& TargetSequenceMap,
283  boost::unordered_map<String, String>& DecoySequenceMap,
284  int shuffle_seed);
285 
292  void generateDecoyInSilicoMap_(OpenMS::TargetedExperiment& exp,
293  std::vector<String> fragment_types, std::vector<size_t> fragment_charges,
294  bool enable_specific_losses,
295  bool enable_unspecific_losses,
296  bool enable_ms2_precursors,
297  std::vector<std::pair<double, double> > swathes,
298  int round_decPow,
299  TargetDecoyMapT& TargetDecoyMap,
300  PeptideMapT& TargetPeptideMap,
301  boost::unordered_map<String, String>& DecoySequenceMap,
302  IonMapT& DecoyIonMap,
303  PeptideMapT& DecoyPeptideMap);
304 
311  void generateTargetAssays_(OpenMS::TargetedExperiment& exp,
312  TransitionVectorType& transitions, double mz_threshold,
313  std::vector<std::pair<double, double> > swathes,
314  int round_decPow,
315  PeptideMapT& TargetPeptideMap,
316  IonMapT& TargetIonMap);
317 
326  void generateDecoyAssays_(OpenMS::TargetedExperiment& exp,
327  TransitionVectorType& transitions,
328  double mz_threshold,
329  std::vector<std::pair<double, double> > swathes,
330  int round_decPow,
331  PeptideMapT& DecoyPeptideMap,
332  TargetDecoyMapT& TargetDecoyMap,
333  IonMapT DecoyIonMap,
334  IonMapT TargetIonMap);
335 
336  };
337 }
338 
339 #endif // OPENMS_ANALYSIS_OPENSWATH_MRMASSAY_H
const double k
boost::unordered_map< size_t, boost::unordered_map< String, std::set< std::string > > > SequenceMapT
Definition: MRMAssay.h:84
Generate assays from a TargetedExperiment.
Definition: MRMAssay.h:67
A more convenient string class.
Definition: String.h:57
Representation of a peptide/protein sequence.
Definition: AASequence.h:108
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
boost::unordered_map< size_t, boost::unordered_map< String, std::vector< std::pair< double, std::string > > > > IonMapT
Definition: MRMAssay.h:85
std::map< String, std::vector< std::pair< std::string, double > > > PeptideMapT
Definition: MRMAssay.h:86
boost::unordered_map< String, TargetedExperiment::Peptide > TargetDecoyMapT
Definition: MRMAssay.h:89
boost::unordered_map< String, String > SequenceMap_T
Definition: MRMAssay.h:87
std::vector< OpenMS::TargetedExperiment::Peptide > PeptideVectorType
Definition: MRMAssay.h:81
std::vector< OpenMS::TargetedExperiment::Protein > ProteinVectorType
Definition: MRMAssay.h:80
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:55
A description of a targeted experiment containing precursor and production ions.
Definition: TargetedExperiment.h:62
std::vector< OpenMS::ReactionMonitoringTransition > TransitionVectorType
Definition: MRMAssay.h:82

OpenMS / TOPP release 2.3.0 Documentation generated on Tue Jan 9 2018 18:22:02 using doxygen 1.8.13