OpenMS  2.8.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-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, Ahmed Khalil $
32 // $Authors: Andreas Bertsch, Chris Bielow $
33 // --------------------------------------------------------------------------
34 //
35 #pragma once
36 
37 #include <iosfwd>
38 #include <map>
39 #include <set>
40 #include <string>
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:
93  typedef MapType_::const_iterator ConstIterator;
94  typedef MapType_::const_iterator const_iterator;
95  typedef MapType_::iterator Iterator;
96  typedef MapType_::iterator iterator;
98 
104 
107 
110 
116  explicit EmpiricalFormula(const String& rhs);
117 
119  EmpiricalFormula(SignedSize number, const Element* element, SignedSize charge = 0);
120 
122  virtual ~EmpiricalFormula();
124 
129  double getMonoWeight() const;
130 
132  double getAverageWeight() const;
133 
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 
177 
189  const std::set<UInt>& precursor_isotopes,
190  const CoarseIsotopePatternGenerator& method) const;
191 
193  SignedSize getNumberOf(const Element* element) const;
194 
197 
199  Int getCharge() const;
200 
202  void setCharge(Int charge);
203 
205  String toString() const;
206 
208  std::map<std::string, int> toMap() const;
210 
214 
217 
220 
223 
225  EmpiricalFormula operator*(const SignedSize& times) const;
226 
229 
232 
235 
237 
242  bool isEmpty() const;
243 
245  bool isCharged() const;
246 
248  bool hasElement(const Element* element) const;
249 
251  bool contains(const EmpiricalFormula& ef) const;
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 
281  // @TODO: make these static member variables instead?
283  static EmpiricalFormula hydrogen(int n_atoms = 1);
285 
287  static EmpiricalFormula water(int n_molecules = 1);
289 
290 protected:
291 
294 
296 
298 
299  Int parseFormula_(std::map<const Element*, SignedSize>& ef, const String& formula) const;
300 
301  };
302 
303  OPENMS_DLLAPI std::ostream& operator<<(std::ostream& os, const EmpiricalFormula& formula);
304 
305 } // namespace OpenMS
Isotope pattern generator for coarse isotope distributions.
Definition: CoarseIsotopePatternGenerator.h:98
Representation of an element.
Definition: Element.h:56
Representation of an empirical formula.
Definition: EmpiricalFormula.h:82
Int parseFormula_(std::map< const Element *, SignedSize > &ef, const String &formula) const
bool hasElement(const Element *element) const
returns true if the formula contains the element
EmpiricalFormula operator*(const SignedSize &times) const
multiplies the elements and charge with a factor
EmpiricalFormula operator+(const EmpiricalFormula &rhs) const
adds the elements of the given formula and returns a new formula
bool estimateFromWeightAndComp(double average_weight, double C, double H, double N, double O, double S, double P)
Fills this EmpiricalFormula with an approximate elemental composition for a given average weight and ...
EmpiricalFormula(const String &rhs)
Iterator begin()
Definition: EmpiricalFormula.h:274
String toString() const
returns the formula as a string (charges are not included)
static EmpiricalFormula water(int n_molecules=1)
Efficiently generates a formula for water.
bool operator<(const EmpiricalFormula &rhs) const
less operator
double getMonoWeight() const
returns the mono isotopic weight of the formula (includes proton charges)
std::map< const Element *, SignedSize > MapType_
Internal typedef for the used map type.
Definition: EmpiricalFormula.h:86
MapType_::const_iterator ConstIterator
Iterators.
Definition: EmpiricalFormula.h:93
friend std::ostream & operator<<(std::ostream &os, const EmpiricalFormula &formula)
writes the formula to a stream
EmpiricalFormula & operator=(const EmpiricalFormula &)=default
Assignment operator.
EmpiricalFormula & operator-=(const EmpiricalFormula &rhs)
subtracts the elements of a formula
EmpiricalFormula(EmpiricalFormula &&)=default
Move constructor.
EmpiricalFormula()
Default constructor.
bool isCharged() const
returns true if charge != 0
EmpiricalFormula(const EmpiricalFormula &)=default
Copy constructor.
ConstIterator end() const
Definition: EmpiricalFormula.h:272
EmpiricalFormula operator-(const EmpiricalFormula &rhs) const
subtracts the elements of a formula an returns a new formula
Int getCharge() const
returns the charge
IsotopeDistribution getIsotopeDistribution(const IsotopePatternGenerator &method) const
returns the isotope distribution of the formula The details of the calculation of the isotope distrib...
void removeZeroedElements_()
remove elements with count 0
MapType_ formula_
Definition: EmpiricalFormula.h:295
SignedSize getNumberOf(const Element *element) const
returns the number of atoms for a certain element (can be negative)
bool operator!=(const EmpiricalFormula &rhs) const
returns true if the formulas differ in elements composition
double getAverageWeight() const
returns the average weight of the formula (includes proton charges)
bool operator==(const EmpiricalFormula &rhs) const
returns true if the formulas contain equal elements in equal quantities
MapType_::iterator iterator
Definition: EmpiricalFormula.h:96
bool estimateFromWeightAndCompAndS(double average_weight, UInt S, double C, double H, double N, double O, double P)
Fills this EmpiricalFormula with an approximate elemental composition for a given average weight,...
EmpiricalFormula(SignedSize number, const Element *element, SignedSize charge=0)
Constructor with element pointer and number.
SignedSize getNumberOfAtoms() const
returns the atoms total (not absolute: negative counts for certain elements will reduce the overall c...
Iterator end()
Definition: EmpiricalFormula.h:276
double calculateTheoreticalIsotopesNumber() const
returns the total number of discrete isotopes
void setCharge(Int charge)
sets the charge
MapType_::const_iterator const_iterator
Definition: EmpiricalFormula.h:94
bool isEmpty() const
returns true if the formula does not contain a element
IsotopeDistribution getConditionalFragmentIsotopeDist(const EmpiricalFormula &precursor, const std::set< UInt > &precursor_isotopes, const CoarseIsotopePatternGenerator &method) const
returns the fragment isotope distribution of this given a precursor formula and conditioned on a set ...
ConstIterator begin() const
Definition: EmpiricalFormula.h:270
EmpiricalFormula & operator+=(const EmpiricalFormula &rhs)
adds the elements of the given formula
virtual ~EmpiricalFormula()
Destructor.
EmpiricalFormula & operator=(EmpiricalFormula &&) &=default
Move assignment operator.
MapType_::iterator Iterator
Definition: EmpiricalFormula.h:95
Int charge_
Definition: EmpiricalFormula.h:297
std::map< std::string, int > toMap() const
returns the formula as a map (charges are not included)
bool contains(const EmpiricalFormula &ef) const
returns true if all elements from ef are LESS abundant (negative allowed) than the corresponding elem...
Definition: IsotopeDistribution.h:65
Provides an interface for different isotope pattern generator methods.
Definition: IsotopePatternGenerator.h:54
A more convenient string class.
Definition: String.h:60
int Int
Signed integer type.
Definition: Types.h:102
unsigned int UInt
Unsigned integer type.
Definition: Types.h:94
ptrdiff_t SignedSize
Signed Size type e.g. used as pointer difference.
Definition: Types.h:134
static String number(double d, UInt n)
Definition: StringUtils.h:196
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)