OpenMS  2.7.0
MetaboliteFeatureDeconvolution.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: Fabian Aicheler $
32 // $Authors: $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
37 // OpenMS
43 
45 
46 namespace OpenMS
47 {
48 
49  class Compomer;
50 
59  class OPENMS_DLLAPI MetaboliteFeatureDeconvolution :
60  public DefaultParamHandler
61  {
62 public:
63 
64  enum CHARGEMODE {QFROMFEATURE = 1, QHEURISTIC, QALL};
65 
69  typedef FeatureMapType::FeatureType::CoordinateType CoordinateType;
71 
77 
80 
83 
87 
98  void compute(const FeatureMapType& fm_in, FeatureMapType& fm_out, ConsensusMap& cons_map, ConsensusMap& cons_map_p);
99 
100 
101 protected:
102 
103 
104  void updateMembers_() override;
105 
111  struct CmpInfo_;
112 
113  /*
114  @brief test for obviously wrong parameter settings and warn
115 
116  Currently supports the following scenarios:
117  * If the lower charge bound is too high, consensus features with gapped, even charges will occur (e.g. 30,32,34), instead of the true (15,16,17)
118  When more than 5% of the cf's look like this, we report it.
119 
120  */
121  void checkSolution_(const ConsensusMap& cons_map) const;
122 
127  void inferMoreEdges_(PairsType& edges, Map<Size, std::set<CmpInfo_> >& feature_adducts);
128 
129  void candidateEdges_(FeatureMapType& fm_out, const Adduct& default_adduct, PairsType& feature_relation, Map<Size, std::set<CmpInfo_> >& feature_adducts);
130 
131  void annotate_feature_(FeatureMapType& fm_out, Adduct& default_adduct, Compomer& c, const Size f_idx, const UInt side, const Int new_q, const Int old_q);
132 
134  void printEdgesOfConnectedFeatures_(Size idx_1, Size idx_2, const PairsType& feature_relation);
135 
142  inline bool intensityFilterPassed_(const Int q1, const Int q2, const Compomer& cmp, const FeatureType& f1, const FeatureType& f2);
143 
150  bool chargeTestworthy_(const Int feature_charge, const Int putative_charge, const bool other_unchanged) const;
151 
166 
167  };
168 } // namespace OpenMS
Definition: Adduct.h:45
Holds information on an edge connecting two features from a (putative) charge ladder.
Definition: Compomer.h:59
A container for consensus elements.
Definition: ConsensusMap.h:88
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:93
A container for features.
Definition: FeatureMap.h:105
An LC-MS feature.
Definition: Feature.h:72
std::vector< ChargePair > PairsType
Definition: ILPDCWrapper.h:55
Map class based on the STL map (containing several convenience functions)
Definition: Map.h:52
Adduct::AdductsType AdductsType
Definition: MassExplainer.h:60
An algorithm to decharge small molecule features (i.e. as found by FeatureFinder).
Definition: MetaboliteFeatureDeconvolution.h:61
MetaboliteFeatureDeconvolution()
default constructor
Map< String, Size > map_label_inverse_
labeling table inverse
Definition: MetaboliteFeatureDeconvolution.h:157
~MetaboliteFeatureDeconvolution() override
destructor
bool chargeTestworthy_(const Int feature_charge, const Int putative_charge, const bool other_unchanged) const
determines if we should test a putative feature charge
DPosition< 2 > ClusterPointType
Definition: MetaboliteFeatureDeconvolution.h:68
FeatureMapType::FeatureType::CoordinateType CoordinateType
Definition: MetaboliteFeatureDeconvolution.h:69
void annotate_feature_(FeatureMapType &fm_out, Adduct &default_adduct, Compomer &c, const Size f_idx, const UInt side, const Int new_q, const Int old_q)
bool enable_intensity_filter_
status of intensity filter for edges
Definition: MetaboliteFeatureDeconvolution.h:159
void checkSolution_(const ConsensusMap &cons_map) const
CHARGEMODE
Definition: MetaboliteFeatureDeconvolution.h:64
CHARGEMODE q_try_
status of charge discovery
Definition: MetaboliteFeatureDeconvolution.h:163
void candidateEdges_(FeatureMapType &fm_out, const Adduct &default_adduct, PairsType &feature_relation, Map< Size, std::set< CmpInfo_ > > &feature_adducts)
MetaboliteFeatureDeconvolution(const MetaboliteFeatureDeconvolution &source)
Copy constructor.
void updateMembers_() override
This method is used to update extra member variables at the end of the setParameters() method.
Feature FeatureType
Definition: MetaboliteFeatureDeconvolution.h:67
bool negative_mode_
status of ionization mode
Definition: MetaboliteFeatureDeconvolution.h:161
MassExplainer::AdductsType potential_adducts_
List of adducts used to explain mass differences.
Definition: MetaboliteFeatureDeconvolution.h:153
Map< Size, String > map_label_
labeling table
Definition: MetaboliteFeatureDeconvolution.h:155
MetaboliteFeatureDeconvolution & operator=(const MetaboliteFeatureDeconvolution &source)
Assignment operator.
FeatureMap FeatureMapType
Definition: MetaboliteFeatureDeconvolution.h:66
Int verbose_level_
amount of debug information displayed
Definition: MetaboliteFeatureDeconvolution.h:165
void printEdgesOfConnectedFeatures_(Size idx_1, Size idx_2, const PairsType &feature_relation)
A function mostly for debugging.
void compute(const FeatureMapType &fm_in, FeatureMapType &fm_out, ConsensusMap &cons_map, ConsensusMap &cons_map_p)
Compute a zero-charge feature map from a set of charged features.
ILPDCWrapper::PairsType PairsType
Definition: MetaboliteFeatureDeconvolution.h:70
bool intensityFilterPassed_(const Int q1, const Int q2, const Compomer &cmp, const FeatureType &f1, const FeatureType &f2)
returns true if the intensity filter was passed or switched off
void inferMoreEdges_(PairsType &edges, Map< Size, std::set< CmpInfo_ > > &feature_adducts)
int Int
Signed integer type.
Definition: Types.h:102
unsigned int UInt
Unsigned integer type.
Definition: Types.h:94
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
const double c
Definition: Constants.h:209
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47