OpenMS  2.7.0
MRMFeature.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: Hannes Roest $
32 // $Authors: Hannes Roest $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
37 #include <OpenMS/KERNEL/Feature.h>
39 
40 namespace OpenMS
41 {
50  class OPENMS_DLLAPI MRMFeature :
51  public Feature
52  {
53 public:
54 
56 
57  typedef std::vector<Feature> FeatureListType;
60 
62 
63  MRMFeature();
65 
67  MRMFeature(const MRMFeature &rhs);
68 
70  MRMFeature(MRMFeature &&rhs) = default;
71 
74 
76  MRMFeature& operator=(MRMFeature&&) & = default;
77 
79  ~MRMFeature() override;
81 
83 
84 
86  const OpenSwath_Scores & getScores() const;
87 
90 
92  Feature & getFeature(const String& key);
93 
95  const Feature & getFeature(const String& key) const;
96 
98  void setScores(const OpenSwath_Scores & scores);
99 
101  void addScore(const String & score_name, double score);
102 
104  void addFeature(const Feature & feature, const String& key);
105 
106  void addFeature(Feature && feature, const String& key);
107 
109  const std::vector<Feature> & getFeatures() const;
110 
112  void getFeatureIDs(std::vector<String> & result) const;
113 
115  void addPrecursorFeature(const Feature & feature, const String& key);
116 
117  void addPrecursorFeature(Feature && feature, const String& key);
118 
120  void getPrecursorFeatureIDs(std::vector<String> & result) const;
121 
124 
126  const Feature & getPrecursorFeature(String key) const;
127 
128  void IDScoresAsMetaValue(bool decoy, const OpenSwath_Ind_Scores& idscores);
130 
131 protected:
132 
134 
136 
139 
141  std::map<String, int> feature_map_;
142 
144  std::map<String, int> precursor_feature_map_;
145 
146  };
147 }
148 
149 
An LC-MS feature.
Definition: Feature.h:72
A multi-chromatogram MRM feature.
Definition: MRMFeature.h:52
OpenSwath_Scores & getScores()
get all peakgroup scores
void addFeature(Feature &&feature, const String &key)
std::vector< Feature > FeatureListType
Type definitions.
Definition: MRMFeature.h:58
const OpenSwath_Scores & getScores() const
get all peakgroup scores
const Feature & getPrecursorFeature(String key) const
get a specified precursor feature (const)
const Feature & getFeature(const String &key) const
get a specified feature (const)
void getPrecursorFeatureIDs(std::vector< String > &result) const
get a list of IDs of available precursor features
OpenSwath_Scores pg_scores_
peak group scores
Definition: MRMFeature.h:138
void addPrecursorFeature(Feature &&feature, const String &key)
Feature & getFeature(const String &key)
get a specified feature
MRMFeature & operator=(MRMFeature &&) &=default
Move assignment operator.
~MRMFeature() override
Destructor.
MRMFeature(MRMFeature &&rhs)=default
Move constructor.
MRMFeature & operator=(const MRMFeature &rhs)
Assignment operator.
std::map< String, int > precursor_feature_map_
map native ids to the precursor features
Definition: MRMFeature.h:144
void setScores(const OpenSwath_Scores &scores)
set all peakgroup scores
void addScore(const String &score_name, double score)
set a single peakgroup score
const std::vector< Feature > & getFeatures() const
get a list of features
MRMFeature(const MRMFeature &rhs)
Copy constructor.
void addFeature(const Feature &feature, const String &key)
Adds an feature from a single chromatogram into the feature.
std::map< String, int > feature_map_
map native ids to the features
Definition: MRMFeature.h:141
Feature & getPrecursorFeature(String key)
get a specified precursor feature
void addPrecursorFeature(const Feature &feature, const String &key)
Adds a precursor feature from a single chromatogram into the feature.
void getFeatureIDs(std::vector< String > &result) const
get a list of IDs of available features
FeatureListType features_
Definition: MRMFeature.h:133
void IDScoresAsMetaValue(bool decoy, const OpenSwath_Ind_Scores &idscores)
FeatureListType precursor_features_
Definition: MRMFeature.h:135
A more convenient string class.
Definition: String.h:61
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
Definition: OpenSwathScores.h:195
A structure to hold the different scores computed by OpenSWATH.
Definition: OpenSwathScores.h:83