OpenMS  2.8.0
FeatureDeconvolution.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: Chris Bielow $
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 FeatureDeconvolution :
60  public DefaultParamHandler
61  {
62 public:
63 
64  enum CHARGEMODE {QFROMFEATURE = 1, QHEURISTIC, QALL};
65 
69 
75 
78 
81 
85 
96  void compute(const FeatureMap& fm_in, FeatureMap& fm_out, ConsensusMap& cons_map, ConsensusMap& cons_map_p);
97 
98 protected:
99 
100  void updateMembers_() override;
101 
107  struct CmpInfo_;
108 
109  /*
110  @brief test for obviously wrong parameter settings and warn
111 
112  Currently supports the following scenarios:
113  * 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)
114  When more than 5% of the cf's look like this, we report it.
115 
116  */
117  void checkSolution_(const ConsensusMap& cons_map) const;
118 
123  void inferMoreEdges_(PairsType& edges, Map<Size, std::set<CmpInfo_> >& feature_adducts);
124 
126  void printEdgesOfConnectedFeatures_(Size idx_1, Size idx_2, const PairsType& feature_relation);
127 
134  inline bool intensityFilterPassed_(const Int q1, const Int q2, const Compomer& cmp, const Feature& f1, const Feature& f2) const;
135 
142  bool chargeTestworthy_(const Int feature_charge, const Int putative_charge, const bool other_unchanged) const;
143 
156 
157  };
158 } // namespace OpenMS
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:90
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:93
An algorithm to decharge features (i.e. as found by FeatureFinder).
Definition: FeatureDeconvolution.h:61
Map< String, Size > map_label_inverse_
labeling table inverse
Definition: FeatureDeconvolution.h:149
bool intensityFilterPassed_(const Int q1, const Int q2, const Compomer &cmp, const Feature &f1, const Feature &f2) const
returns true if the intensity filter was passed or switched off
FeatureDeconvolution & operator=(const FeatureDeconvolution &source)
Assignment operator.
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: FeatureDeconvolution.h:66
void compute(const FeatureMap &fm_in, FeatureMap &fm_out, ConsensusMap &cons_map, ConsensusMap &cons_map_p)
Compute a zero-charge feature map from a set of charged features.
bool enable_intensity_filter_
status of intensity filter for edges
Definition: FeatureDeconvolution.h:151
void checkSolution_(const ConsensusMap &cons_map) const
CHARGEMODE
Definition: FeatureDeconvolution.h:64
CHARGEMODE q_try_
status of charge discovery
Definition: FeatureDeconvolution.h:153
~FeatureDeconvolution() override
destructor
Feature::CoordinateType CoordinateType
Definition: FeatureDeconvolution.h:67
void updateMembers_() override
This method is used to update extra member variables at the end of the setParameters() method.
MassExplainer::AdductsType potential_adducts_
List of adducts used to explain mass differences.
Definition: FeatureDeconvolution.h:145
Map< Size, String > map_label_
labeling table
Definition: FeatureDeconvolution.h:147
FeatureDeconvolution()
default constructor
Int verbose_level_
amount of debug information displayed
Definition: FeatureDeconvolution.h:155
FeatureDeconvolution(const FeatureDeconvolution &source)
Copy constructor.
void printEdgesOfConnectedFeatures_(Size idx_1, Size idx_2, const PairsType &feature_relation)
A function mostly for debugging.
ILPDCWrapper::PairsType PairsType
Definition: FeatureDeconvolution.h:68
void inferMoreEdges_(PairsType &edges, Map< Size, std::set< CmpInfo_ > > &feature_adducts)
A container for features.
Definition: FeatureMap.h:106
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:59
double CoordinateType
Coordinate type (of the position)
Definition: Peak2D.h:64
int Int
Signed integer type.
Definition: Types.h:102
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47