OpenMS  2.4.0
EmpiricalFormula.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-2018.
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: Andreas Bertsch, Chris Bielow $
33 // --------------------------------------------------------------------------
34 //
35 #pragma once
36 
37 #include <iosfwd>
38 #include <map>
39 #include <set>
40 #include <algorithm>
41 
42 #include <OpenMS/CONCEPT/Types.h>
43 
44 namespace OpenMS
45 {
46  class String;
47  class Element;
48  class ElementDB;
49  class IsotopeDistribution;
50  class IsotopePatternGenerator;
51  class CoarseIsotopePatternGenerator;
52 
81  class OPENMS_DLLAPI EmpiricalFormula
82  {
83 
84 protected:
86  typedef std::map<const Element*, SignedSize> MapType_;
87 
88 public:
92  typedef MapType_::const_iterator ConstIterator;
94  typedef MapType_::const_iterator const_iterator;
95  typedef MapType_::iterator Iterator;
96  typedef MapType_::iterator iterator;
98 
104 
106  EmpiricalFormula(const EmpiricalFormula&) = default;
107 
109  EmpiricalFormula(EmpiricalFormula&&) = default;
110 
116  explicit EmpiricalFormula(const String& rhs);
117 
119  EmpiricalFormula(SignedSize number, const Element* element, SignedSize charge = 0);
120 
122  virtual ~EmpiricalFormula();
124 
128  double getMonoWeight() const;
130 
132  double getAverageWeight() const;
133 
135  double calculateTheoreticalIsotopesNumber() const;
136 
150  bool estimateFromWeightAndComp(double average_weight, double C, double H, double N, double O, double S, double P);
151 
166  bool estimateFromWeightAndCompAndS(double average_weight, UInt S, double C, double H, double N, double O, double P);
167 
168 
176  IsotopeDistribution getIsotopeDistribution(const IsotopePatternGenerator& method) const;
177 
188  IsotopeDistribution getConditionalFragmentIsotopeDist(const EmpiricalFormula& precursor,
189  const std::set<UInt>& precursor_isotopes,
190  const CoarseIsotopePatternGenerator& method) const;
191 
193  SignedSize getNumberOf(const Element* element) const;
194 
196  SignedSize getNumberOfAtoms() const;
197 
199  SignedSize getCharge() const;
200 
202  void setCharge(SignedSize charge);
203 
205  String toString() const;
206 
208  std::map<std::string, int> toMap() const;
210 
214 
216  EmpiricalFormula& operator=(const EmpiricalFormula&) = default;
217 
219  EmpiricalFormula& operator=(EmpiricalFormula&&) & = default;
220 
222  EmpiricalFormula& operator+=(const EmpiricalFormula& rhs);
223 
225  EmpiricalFormula operator*(const SignedSize& times) const;
226 
228  EmpiricalFormula operator+(const EmpiricalFormula& rhs) const;
229 
231  EmpiricalFormula& operator-=(const EmpiricalFormula& rhs);
232 
234  EmpiricalFormula operator-(const EmpiricalFormula& rhs) const;
235 
237 
241  bool isEmpty() const;
243 
245  bool isCharged() const;
246 
248  bool hasElement(const Element* element) const;
249 
251  bool contains(const EmpiricalFormula& ef);
252 
254  bool operator==(const EmpiricalFormula& rhs) const;
255 
257  bool operator!=(const EmpiricalFormula& rhs) const;
258 
260  bool operator<(const EmpiricalFormula& rhs) const;
261 
263 
265  friend OPENMS_DLLAPI std::ostream& operator<<(std::ostream& os, const EmpiricalFormula& formula);
266 
270  inline ConstIterator begin() const { return formula_.begin(); }
271 
272  inline ConstIterator end() const { return formula_.end(); }
273 
274  inline Iterator begin() { return formula_.begin(); }
275 
276  inline Iterator end() { return formula_.end(); }
278 
279 protected:
280 
282  void removeZeroedElements_();
283 
285 
287 
288  SignedSize parseFormula_(std::map<const Element*, SignedSize>& ef, const String& formula) const;
289 
290  };
291 
292  OPENMS_DLLAPI std::ostream& operator<<(std::ostream& os, const EmpiricalFormula& formula);
293 
294 } // namespace OpenMS
A more convenient string class.
Definition: String.h:58
Isotope pattern generator for coarse isotope distributions.
Definition: CoarseIsotopePatternGenerator.h:96
SignedSize charge_
Definition: EmpiricalFormula.h:286
ConstIterator begin() const
Definition: EmpiricalFormula.h:270
unsigned int UInt
Unsigned integer type.
Definition: Types.h:94
Definition: IsotopeDistribution.h:72
bool operator==(_Iterator< _Val, _Ref, _Ptr > const &, _Iterator< _Val, _Ref, _Ptr > const &)
Definition: KDTree.h:806
ptrdiff_t SignedSize
Signed Size type e.g. used as pointer difference.
Definition: Types.h:134
MapType_::const_iterator ConstIterator
Iterators.
Definition: EmpiricalFormula.h:93
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
MapType_ formula_
Definition: EmpiricalFormula.h:284
ConstIterator end() const
Definition: EmpiricalFormula.h:272
bool operator<(const MultiplexDeltaMasses &dm1, const MultiplexDeltaMasses &dm2)
Representation of an empirical formula.
Definition: EmpiricalFormula.h:81
Representation of an element.
Definition: Element.h:53
MapType_::iterator iterator
Definition: EmpiricalFormula.h:96
MapType_::iterator Iterator
Definition: EmpiricalFormula.h:95
Iterator begin()
Definition: EmpiricalFormula.h:274
MapType_::const_iterator const_iterator
Definition: EmpiricalFormula.h:94
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)
DPosition< D, TCoordinateType > operator*(DPosition< D, TCoordinateType > position, typename DPosition< D, TCoordinateType >::CoordinateType scalar)
Scalar multiplication (a bit inefficient)
Definition: DPosition.h:420
Iterator end()
Definition: EmpiricalFormula.h:276
bool operator!=(_Iterator< _Val, _Ref, _Ptr > const &, _Iterator< _Val, _Ref, _Ptr > const &)
Definition: KDTree.h:824
std::map< const Element *, SignedSize > MapType_
Internal typedef for the used map type.
Definition: EmpiricalFormula.h:86
String toString(T i)
toString functions (single argument)
Definition: StringUtils.h:68
Provides an interface for different isotope pattern generator methods.
Definition: IsotopePatternGenerator.h:55