OpenMS  2.6.0
MSSpectrum.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-2020.
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: Timo Sachsenberg$
32 // $Authors: Marc Sturm $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
37 #include <OpenMS/KERNEL/Peak1D.h>
44 
45 namespace OpenMS
46 {
47  class Peak1D;
48 
67  class OPENMS_DLLAPI MSSpectrum :
68  private std::vector<Peak1D>,
69  public RangeManager<1>,
70  public SpectrumSettings
71  {
72 public:
73 
75  struct OPENMS_DLLAPI RTLess : public std::binary_function<MSSpectrum, MSSpectrum, bool>
76  {
77  bool operator()(const MSSpectrum& a, const MSSpectrum& b) const;
78  };
79 
81  struct Chunk {
84  bool is_sorted;
85  Chunk(Size start, Size end, bool sorted) : start(start), end(end), is_sorted(sorted) {}
86  };
87 
88  struct Chunks {
89  public:
90  Chunks(const MSSpectrum& s) : spec_(s) {}
91  void add(bool is_sorted)
92  {
93  chunks_.emplace_back((chunks_.empty() ? 0 : chunks_.back().end), spec_.size(), is_sorted);
94  }
95  std::vector<Chunk>& getChunks()
96  {
97  return chunks_;
98  }
99  private:
100  std::vector<Chunk> chunks_;
102  };
103 
105 
106  typedef OpenMS::Peak1D PeakType;
111  typedef std::vector<PeakType> ContainerType;
114  typedef std::vector<FloatDataArray> FloatDataArrays;
117  typedef std::vector<StringDataArray> StringDataArrays;
120  typedef std::vector<IntegerDataArray> IntegerDataArrays;
122 
124 
125  typedef typename ContainerType::iterator Iterator;
128  typedef typename ContainerType::const_iterator ConstIterator;
130  typedef typename ContainerType::reverse_iterator ReverseIterator;
132  typedef typename ContainerType::const_reverse_iterator ConstReverseIterator;
134 
136 
137  using ContainerType::operator[];
138  using ContainerType::begin;
139  using ContainerType::rbegin;
140  using ContainerType::end;
141  using ContainerType::rend;
142  using ContainerType::resize;
143  using ContainerType::size;
144  using ContainerType::push_back;
145  using ContainerType::emplace_back;
146  using ContainerType::pop_back;
147  using ContainerType::empty;
148  using ContainerType::front;
149  using ContainerType::back;
150  using ContainerType::reserve;
151  using ContainerType::insert;
152  using ContainerType::erase;
153  using ContainerType::swap;
154 
155  using typename ContainerType::iterator;
156  using typename ContainerType::const_iterator;
157  using typename ContainerType::size_type;
158  using typename ContainerType::value_type;
159  using typename ContainerType::reference;
160  using typename ContainerType::const_reference;
161  using typename ContainerType::pointer;
162  using typename ContainerType::difference_type;
163 
166 
167 
169  MSSpectrum();
170 
172  MSSpectrum(const MSSpectrum& source);
173 
175  MSSpectrum(MSSpectrum&&) = default;
176 
178  ~MSSpectrum() override
179  {}
180 
182  MSSpectrum& operator=(const MSSpectrum& source);
183 
185  MSSpectrum& operator=(MSSpectrum&&) & = default;
186 
188  MSSpectrum& operator=(const SpectrumSettings & source);
189 
191  bool operator==(const MSSpectrum& rhs) const;
192 
194  bool operator!=(const MSSpectrum& rhs) const
195  {
196  return !(operator==(rhs));
197  }
198 
199  // Docu in base class (RangeManager)
200  void updateRanges() override;
201 
205  double getRT() const;
206 
208  void setRT(double rt);
209 
218  double getDriftTime() const;
219 
223  void setDriftTime(double dt);
224 
228  DriftTimeUnit getDriftTimeUnit() const;
229 
233  void setDriftTimeUnit(DriftTimeUnit dt);
234 
240  UInt getMSLevel() const;
241 
243  void setMSLevel(UInt ms_level);
244 
246  const String& getName() const;
247 
249  void setName(const String& name);
250 
252 
266  const FloatDataArrays& getFloatDataArrays() const;
268 
271  {
272  return float_data_arrays_;
273  }
274 
276  void setFloatDataArrays(const FloatDataArrays& fda);
277 
279  const StringDataArrays& getStringDataArrays() const;
280 
282  StringDataArrays& getStringDataArrays();
283 
285  void setStringDataArrays(const StringDataArrays& sda);
286 
288  const IntegerDataArrays& getIntegerDataArrays() const;
289 
291  IntegerDataArrays& getIntegerDataArrays();
292 
294  void setIntegerDataArrays(const IntegerDataArrays& ida);
296 
298 
299 
304  void sortByIntensity(bool reverse = false);
305 
311  void sortByPosition();
312 
317  void sortByPositionPresorted(const std::vector<Chunk>& chunks);
318 
320  bool isSorted() const;
321 
323 
326 
336  Size findNearest(CoordinateType mz) const;
337 
349  Int findNearest(CoordinateType mz, CoordinateType tolerance) const;
350 
364  Int findNearest(CoordinateType mz, CoordinateType tolerance_left, CoordinateType tolerance_right) const;
365 
377  Int findHighestInWindow(CoordinateType mz, CoordinateType tolerance_left, CoordinateType tolerance_right) const;
378 
384  Iterator MZBegin(CoordinateType mz);
385 
391  Iterator MZBegin(Iterator begin, CoordinateType mz, Iterator end);
392 
398  Iterator MZEnd(CoordinateType mz);
399 
405  Iterator MZEnd(Iterator begin, CoordinateType mz, Iterator end);
406 
412  ConstIterator MZBegin(CoordinateType mz) const;
413 
419  ConstIterator MZBegin(ConstIterator begin, CoordinateType mz, ConstIterator end) const;
420 
426  ConstIterator MZEnd(CoordinateType mz) const;
427 
433  ConstIterator MZEnd(ConstIterator begin, CoordinateType mz, ConstIterator end) const;
434 
442  Iterator PosBegin(CoordinateType mz);
443 
451  Iterator PosBegin(Iterator begin, CoordinateType mz, Iterator end);
452 
460  ConstIterator PosBegin(CoordinateType mz) const;
461 
469  ConstIterator PosBegin(ConstIterator begin, CoordinateType mz, ConstIterator end) const;
470 
478  Iterator PosEnd(CoordinateType mz);
479 
487  Iterator PosEnd(Iterator begin, CoordinateType mz, Iterator end);
488 
496  ConstIterator PosEnd(CoordinateType mz) const;
497 
505  ConstIterator PosEnd(ConstIterator begin, CoordinateType mz, ConstIterator end) const;
506 
508  bool containsIMData() const;
509 
511 
512 
518  void clear(bool clear_meta_data);
519 
520  /*
521  @brief Select a (subset of) spectrum and its data_arrays, only retaining the indices given in @p indices
522 
523  @param indices Vector of indices to keep
524  @return Reference to this MSSpectrum
525 
526  */
527  MSSpectrum& select(const std::vector<Size>& indices);
528 
529 
540  SpectrumSettings::SpectrumType getType(const bool query_data) const;
541  using SpectrumSettings::getType; // expose base class function
542 
545  ConstIterator getBasePeak() const;
546 
549  Iterator getBasePeak();
550 
552  PeakType::IntensityType getTIC() const;
553 
554 protected:
557 
559  double drift_time_;
560 
563 
566 
569 
572 
575 
578  };
579 
580  inline std::ostream& operator<<(std::ostream& os, const MSSpectrum& spec)
581  {
582  os << "-- MSSPECTRUM BEGIN --" << std::endl;
583 
584  // spectrum settings
585  os << static_cast<const SpectrumSettings&>(spec);
586 
587  // peaklist
588  for (MSSpectrum::ConstIterator it = spec.begin(); it != spec.end(); ++it)
589  {
590  os << *it << std::endl;
591  }
592 
593  os << "-- MSSPECTRUM END --" << std::endl;
594  return os;
595  }
596 
597 } // namespace OpenMS
OpenMS::PeakType
Peak2D PeakType
Definition: MassTrace.h:47
OpenMS::DataArrays::IntegerDataArray
Integer data array class.
Definition: DataArrays.h:52
ConsensusXMLFile.h
OpenMS::MSSpectrum::CoordinateType
PeakType::CoordinateType CoordinateType
Coordinate (m/z) type.
Definition: MSSpectrum.h:109
OpenMS::MSSpectrum::~MSSpectrum
~MSSpectrum() override
Destructor.
Definition: MSSpectrum.h:178
OpenMS::TOPPBase
Base class for TOPP applications.
Definition: TOPPBase.h:144
DataArrays.h
FileHandler.h
SimTypes.h
MSSim.h
double
OpenMS::ConsensusXMLFile::store
void store(const String &filename, const ConsensusMap &consensus_map)
Stores a consensus map to file.
OpenMS::IdXMLFile::store
void store(const String &filename, const std::vector< ProteinIdentification > &protein_ids, const std::vector< PeptideIdentification > &peptide_ids, const String &document_id="")
Stores the data in an idXML file.
OpenMS::MSSpectrum::Chunk::is_sorted
bool is_sorted
are the Peaks in [start, end) sorted yet?
Definition: MSSpectrum.h:84
OpenMS::MSSpectrum::RTLess
Comparator for the retention time.
Definition: MSSpectrum.h:75
OpenMS::MSSim::simulate
void simulate(SimTypes::MutableSimRandomNumberGeneratorPtr rnd_gen, SimTypes::SampleChannels &peptides)
General purpose function to simulate a mass spectrometry run.
StopWatch.h
OpenMS::FASTAFile
This class serves for reading in and writing FASTA files.
Definition: FASTAFile.h:64
OpenMS::MzMLFile::store
void store(const String &filename, const PeakMap &map) const
Stores a map in an MzML file.
OpenMS::MSSpectrum::DriftTimeUnit
Precursor::DriftTimeUnit DriftTimeUnit
Definition: MSSpectrum.h:164
OpenMS::MSSim
Central class for simulation of mass spectrometry experiments.
Definition: MSSim.h:68
OpenMS::Param::setValue
void setValue(const String &key, const DataValue &value, const String &description="", const StringList &tags=StringList())
Sets a value.
OpenMS::MSSpectrum::drift_time_unit_
DriftTimeUnit drift_time_unit_
Drift time unit.
Definition: MSSpectrum.h:562
OpenMS::MzMLFile
File adapter for MzML files.
Definition: MzMLFile.h:55
OpenMS::String
A more convenient string class.
Definition: String.h:59
OpenMS::MSSim::getContaminants
const SimTypes::FeatureMapSim & getContaminants() const
Access the contaminants feature map of simulated features.
Peak1D.h
MzMLFile.h
OpenMS::Param::setValidStrings
void setValidStrings(const String &key, const std::vector< String > &strings)
Sets the valid strings for the parameter key.
OpenMS::Size
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
IdXMLFile.h
FeatureXMLFile.h
OpenMS::ListUtils::contains
static bool contains(const std::vector< T > &container, const E &elem)
Checks whether the element elem is contained in the given container.
Definition: ListUtils.h:146
DTA2DFile.h
OpenMS::SimTypes::SampleProteins
std::vector< SimProtein > SampleProteins
Container for FASTAEntry & abundance information.
Definition: SimTypes.h:90
OpenMS::MSSim::getLabelingConsensus
ConsensusMap & getLabelingConsensus()
Access the labeling consensus map of simulated features.
OpenMS::MSSpectrum::IntegerDataArray
OpenMS::DataArrays::IntegerDataArray IntegerDataArray
Integer data array vector type.
Definition: MSSpectrum.h:119
OpenMS::SimTypes::MutableSimRandomNumberGeneratorPtr
boost::shared_ptr< SimRandomNumberGenerator > MutableSimRandomNumberGeneratorPtr
Definition: SimTypes.h:174
OpenMS::MSSpectrum::StringDataArrays
std::vector< StringDataArray > StringDataArrays
Definition: MSSpectrum.h:117
OpenMS::SimTypes::SimRandomNumberGenerator
Wrapper class for random number generators used by the simulation classes.
Definition: SimTypes.h:118
SpectrumSettings.h
OpenMS::MSSpectrum::operator!=
bool operator!=(const MSSpectrum &rhs) const
Equality operator.
Definition: MSSpectrum.h:194
OpenMS::SimTypes::SampleChannels
std::vector< SampleProteins > SampleChannels
Container for multiple channels of SampleProteins.
Definition: SimTypes.h:93
OpenMS::MSSpectrum::name_
String name_
Name.
Definition: MSSpectrum.h:568
OpenMS::Exception::InvalidParameter
Exception indicating that an invalid parameter was handed over to an algorithm.
Definition: Exception.h:347
OpenMS
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
OpenMS::RangeManager
Handles the management of a position and intensity range.
Definition: RangeManager.h:47
OpenMS::MSSpectrum::Chunks::getChunks
std::vector< Chunk > & getChunks()
Definition: MSSpectrum.h:95
OpenMS::MetaInfoInterface::setMetaValue
void setMetaValue(const String &name, const DataValue &value)
Sets the DataValue corresponding to a name.
OpenMS::MSSpectrum::integer_data_arrays_
IntegerDataArrays integer_data_arrays_
Integer data arrays.
Definition: MSSpectrum.h:577
OpenMS::SpectrumSettings::SpectrumType
SpectrumType
Spectrum peak type.
Definition: SpectrumSettings.h:70
FASTAFile.h
OpenMS::MSSpectrum::string_data_arrays_
StringDataArrays string_data_arrays_
String data arrays.
Definition: MSSpectrum.h:574
OpenMS::StopWatch::getClockTime
double getClockTime() const
OpenMS::MetaInfoInterface
Interface for classes that can store arbitrary meta information (Type-Name-Value tuples).
Definition: MetaInfoInterface.h:60
int
MzXMLFile.h
OpenMS::MSSpectrum::Chunks::spec_
const MSSpectrum & spec_
Definition: MSSpectrum.h:101
OpenMS::MSSim::getPeakMap
const SimTypes::MSSimExperiment & getPeakMap() const
Access the picked (centroided) experiment.
OpenMS::StopWatch::start
void start()
Start the stop watch.
OpenMS::MSSpectrum::Chunk::start
Size start
inclusive
Definition: MSSpectrum.h:82
OpenMS::MSSpectrum::Chunk
Used to remember what subsets in a spectrum are sorted already to allow faster sorting of the spectru...
Definition: MSSpectrum.h:81
OpenMS::SpectrumSettings::getType
SpectrumType getType() const
returns the spectrum type (centroided (PEAKS) or profile data (RAW))
OpenMS::MSSpectrum::IntegerDataArrays
std::vector< IntegerDataArray > IntegerDataArrays
Definition: MSSpectrum.h:120
OpenMS::StopWatch::stop
void stop()
Stop the stop watch (can be resumed later). If the stop watch was not running an exception is thrown.
OpenMS::DefaultParamHandler::setParameters
void setParameters(const Param &param)
Sets the parameters.
OpenMS::MSSim::getChargeConsensus
ConsensusMap & getChargeConsensus()
Access the charge consensus map of simulated features.
seqan::find
bool find(TFinder &finder, const Pattern< TNeedle, FuzzyAC > &me, PatternAuxData< TNeedle > &dh)
Definition: AhoCorasickAmbiguous.h:884
OpenMS::DataArrays::StringDataArray
String data array class.
Definition: DataArrays.h:59
RangeManager.h
OpenMS::String::toUpper
String & toUpper()
Converts the string to uppercase.
OpenMS::Peak1D
A 1-dimensional raw data point or peak.
Definition: Peak1D.h:54
OpenMS::operator<<
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)
OpenMS::Citation
Stores Citations for individual TOPP tools.
Definition: TOPPBase.h:70
OpenMS::ConsensusMap
A container for consensus elements.
Definition: ConsensusMap.h:80
OpenMS::StringList
std::vector< String > StringList
Vector of String.
Definition: ListUtils.h:70
OpenMS::FeatureXMLFile::store
void store(const String &filename, const FeatureMap &feature_map)
stores the map feature_map in file with name filename.
OpenMS::UInt
unsigned int UInt
Unsigned integer type.
Definition: Types.h:94
Iterator
OpenMS::StopWatch
This class is used to determine the current process' CPU (user and/or kernel) and wall time.
Definition: StopWatch.h:65
OpenMS::MSSpectrum::FloatDataArrays
std::vector< FloatDataArray > FloatDataArrays
Definition: MSSpectrum.h:114
OpenMS::Precursor::DriftTimeUnit
DriftTimeUnit
Drift time unit.
Definition: Precursor.h:84
OpenMS::MSSpectrum::getFloatDataArrays
FloatDataArrays & getFloatDataArrays()
Returns a mutable reference to the float meta data arrays.
Definition: MSSpectrum.h:270
main
int main(int argc, const char **argv)
Definition: INIFileEditor.cpp:73
OpenMS::SimTypes::SimProtein
Plain data object holding sequence and abundance information on a single protein.
Definition: SimTypes.h:73
OpenMS::MSSpectrum::Chunk::end
Size end
not inclusive
Definition: MSSpectrum.h:83
OpenMS::ConsensusMap::getColumnHeaders
const ColumnHeaders & getColumnHeaders() const
Non-mutable access to the file descriptions.
OpenMS::MSSpectrum::retention_time_
double retention_time_
Retention time.
Definition: MSSpectrum.h:556
OpenMS::MSSpectrum::Chunks::add
void add(bool is_sorted)
Definition: MSSpectrum.h:91
OpenMS::MSSpectrum::drift_time_
double drift_time_
Drift time.
Definition: MSSpectrum.h:559
OpenMS::Param::setSectionDescription
void setSectionDescription(const String &key, const String &description)
Sets a description for an existing section.
ComparatorUtils.h
OPENMS_LOG_ERROR
#define OPENMS_LOG_ERROR
Macro to be used if non-fatal error are reported (processing continues)
Definition: LogStream.h:455
OpenMS::Internal::operator==
bool operator==(const IDBoostGraph::ProteinGroup &lhs, const IDBoostGraph::ProteinGroup &rhs)
OpenMS::FASTAFile::load
static void load(const String &filename, std::vector< FASTAEntry > &data)
loads a FASTA file given by 'filename' and stores the information in 'data'
OpenMS::FeatureXMLFile
This class provides Input/Output functionality for feature maps.
Definition: FeatureXMLFile.h:68
float
OpenMS::MSSim::getSimulatedFeatures
const SimTypes::FeatureMapSim & getSimulatedFeatures() const
Access the simulated features.
OpenMS::MSSpectrum::ms_level_
UInt ms_level_
MS level.
Definition: MSSpectrum.h:565
OpenMS::MSSpectrum::float_data_arrays_
FloatDataArrays float_data_arrays_
Float data arrays.
Definition: MSSpectrum.h:571
OpenMS::MSSpectrum::Chunk::Chunk
Chunk(Size start, Size end, bool sorted)
Definition: MSSpectrum.h:85
StandardDeclarations.h
OpenMS::SpectrumSettings
Representation of 1D spectrum settings.
Definition: SpectrumSettings.h:63
OpenMS::Param
Management and storage of parameters / INI files.
Definition: Param.h:73
OpenMS::MSSpectrum::ContainerType
std::vector< PeakType > ContainerType
Spectrum base type.
Definition: MSSpectrum.h:111
OpenMS::MSSpectrum::Iterator
ContainerType::iterator Iterator
Mutable iterator.
Definition: MSSpectrum.h:126
OpenMS::MSSpectrum::StringDataArray
OpenMS::DataArrays::StringDataArray StringDataArray
String data array vector type.
Definition: MSSpectrum.h:116
OpenMS::MSSpectrum::ConstIterator
ContainerType::const_iterator ConstIterator
Non-mutable iterator.
Definition: MSSpectrum.h:128
OpenMS::MSSpectrum::ReverseIterator
ContainerType::reverse_iterator ReverseIterator
Mutable reverse iterator.
Definition: MSSpectrum.h:130
OpenMS::MSSpectrum::FloatDataArray
OpenMS::DataArrays::FloatDataArray FloatDataArray
Float data array vector type.
Definition: MSSpectrum.h:113
OpenMS::MSSpectrum
The representation of a 1D spectrum.
Definition: MSSpectrum.h:67
OpenMS::MSSpectrum::ConstReverseIterator
ContainerType::const_reverse_iterator ConstReverseIterator
Non-mutable reverse iterator.
Definition: MSSpectrum.h:132
OpenMS::DataArrays::FloatDataArray
Float data array class.
Definition: DataArrays.h:45
OpenMS::Param::insert
void insert(const String &prefix, const Param &param)
OpenMS::MSSpectrum::Chunks::chunks_
std::vector< Chunk > chunks_
Definition: MSSpectrum.h:100
OpenMS::UniqueIdInterface::getUniqueId
UInt64 getUniqueId() const
Non-mutable access to unique id - returns the unique id.
Definition: UniqueIdInterface.h:105
OpenMS::ProgressLogger::setLogType
void setLogType(LogType type) const
Sets the progress log that should be used. The default type is NONE!
TOPPBase.h
OpenMS::MSSpectrum::Chunks::Chunks
Chunks(const MSSpectrum &s)
Definition: MSSpectrum.h:90
OpenMS::MSSim::getIdentifications
void getIdentifications(std::vector< ProteinIdentification > &proteins, std::vector< PeptideIdentification > &peptides) const
Access the simulated identifications (proteins and peptides)
OpenMS::ConsensusXMLFile
This class provides Input functionality for ConsensusMaps and Output functionality for alignments and...
Definition: ConsensusXMLFile.h:62
OpenMS::IdXMLFile
Used to load and store idXML files.
Definition: IdXMLFile.h:63
OpenMS::MSSim::getExperiment
const SimTypes::MSSimExperiment & getExperiment() const
Access the simulated experiment.
MetaInfoDescription.h
OpenMS::MSSpectrum::Chunks
Definition: MSSpectrum.h:88