Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages
KDTreeFeatureMaps.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: Johannes Veit $
32 // $Authors: Johannes Veit $
33 // --------------------------------------------------------------------------
34 
35 #ifndef OPENMS_ANALYSIS_QUANTITATION_KDTREEFEATUREMAPS_H
36 #define OPENMS_ANALYSIS_QUANTITATION_KDTREEFEATUREMAPS_H
37 
38 #include <OpenMS/config.h>
40 #include <OpenMS/KERNEL/Feature.h>
45 
46 namespace OpenMS
47 {
48 
50 class OPENMS_DLLAPI KDTreeFeatureMaps : public DefaultParamHandler
51 {
52 
53 public:
54 
57 
60  DefaultParamHandler("KDTreeFeatureMaps")
61  {
62  check_defaults_ = false;
63  }
64 
66  template <typename MapType>
67  KDTreeFeatureMaps(const std::vector<MapType>& maps, const Param& param) :
68  DefaultParamHandler("KDTreeFeatureMaps")
69  {
70  check_defaults_ = false;
71  setParameters(param);
72  addMaps(maps);
73  }
74 
77  {
78  }
79 
81  template <typename MapType>
82  void addMaps(const std::vector<MapType>& maps)
83  {
84  num_maps_ = maps.size();
85 
86  for (Size i = 0; i < num_maps_; ++i)
87  {
88  const MapType& m = maps[i];
89  for (typename MapType::const_iterator it = m.begin(); it != m.end(); ++it)
90  {
91  addFeature(i, &(*it));
92  }
93  }
94  optimizeTree();
95  }
96 
98  void addFeature(Size mt_map_index, const BaseFeature* feature);
99 
101  const BaseFeature* feature(Size i) const;
102 
104  double rt(Size i) const;
105 
107  double mz(Size i) const;
108 
110  float intensity(Size i) const;
111 
113  Int charge(Size i) const;
114 
116  Size mapIndex(Size i) const;
117 
119  Size size() const;
120 
122  Size treeSize() const;
123 
125  Size numMaps() const;
126 
128  void clear();
129 
131  void optimizeTree();
132 
134  void getNeighborhood(Size index, std::vector<Size>& result_indices, double rt_tol, double mz_tol, bool mz_ppm, bool include_features_from_same_map = false, double max_pairwise_log_fc = -1.0) const;
135 
137  void queryRegion(double rt_low, double rt_high, double mz_low, double mz_high, std::vector<Size>& result_indices, Size ignored_map_index = std::numeric_limits<Size>::max()) const;
138 
140  void applyTransformations(const std::vector<TransformationModelLowess*>& trafos);
141 
142 protected:
143 
144  virtual void updateMembers_();
145 
147  std::vector<const BaseFeature*> features_;
148 
150  std::vector<Size> map_index_;
151 
153  std::vector<double> rt_;
154 
157 
159  FeatureKDTree kd_tree_;
160 
161 };
162 }
163 
164 #endif // OPENMS_ANALYSIS_QUANTITATION_KDTREEFEATUREMAPS_H
Stores a set of features, together with a 2D tree for fast search.
Definition: KDTreeFeatureMaps.h:50
FeatureKDTree kd_tree_
2D tree on features from all input maps.
Definition: KDTreeFeatureMaps.h:159
Iterator begin()
Definition: MSExperiment.h:162
Base::const_iterator const_iterator
Definition: MSExperiment.h:130
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
Size num_maps_
Number of maps.
Definition: KDTreeFeatureMaps.h:156
A basic LC-MS feature.
Definition: BaseFeature.h:56
Iterator end()
Definition: MSExperiment.h:172
KDTree::KDTree< 2, KDTreeFeatureNode > FeatureKDTree
2D tree on features
Definition: KDTreeFeatureMaps.h:56
void addMaps(const std::vector< MapType > &maps)
Add maps and balance kd-tree.
Definition: KDTreeFeatureMaps.h:82
KDTreeFeatureMaps(const std::vector< MapType > &maps, const Param &param)
Constructor.
Definition: KDTreeFeatureMaps.h:67
Management and storage of parameters / INI files.
Definition: Param.h:75
In-Memory representation of a mass spectrometry experiment.
Definition: MSExperiment.h:82
std::vector< double > rt_
(Potentially transformed) retention times
Definition: KDTreeFeatureMaps.h:153
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:128
KDTreeFeatureMaps()
Default constructor.
Definition: KDTreeFeatureMaps.h:59
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:92
std::vector< Size > map_index_
Map indices.
Definition: KDTreeFeatureMaps.h:150
int Int
Signed integer type.
Definition: Types.h:103
~KDTreeFeatureMaps()
Destructor.
Definition: KDTreeFeatureMaps.h:76
std::vector< const BaseFeature * > features_
Feature data.
Definition: KDTreeFeatureMaps.h:147

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