OpenMS
MzMLHandler.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-2023.
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, Chris Bielow, Hannes Roest $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
37 #include <OpenMS/CONCEPT/Helpers.h>
39 
41 
44 
47 
51 
52 #include <map>
53 
54 
55 //MISSING:
56 // - more than one selected ion per precursor (warning if more than one)
57 // - scanWindowList for each acquisition separately (currently for the whole spectrum only)
58 // - instrumentConfigurationRef attribute for scan (why should the instrument change between scans? - warning if used)
59 // - scanSettingsRef attribute for instrumentConfiguration tag (currently no information there because of missing mapping file entry - warning if used)
60 
61 // xs:id/xs:idref prefix list
62 // - sf_ru : sourceFile (run)
63 // - sf_sp : sourceFile (spectrum)
64 // - sf_pr : sourceFile (precursor)
65 // - sf_ac : sourceFile (acquisition)
66 // - sa : sample
67 // - ic : instrumentConfiguration
68 // - so_dp : software (data processing)
69 // - so_in : software (instrument)
70 // - dp_sp : dataProcessing (spectrum)
71 // - dp_bi : dataProcessing (binary data array)
72 // - dp_ch : dataProcessing (chromatogram)
73 
74 namespace OpenMS
75 {
76  namespace Interfaces
77  {
78  class IMSDataConsumer;
79  }
80 
81  namespace Internal
82  {
83  class MzMLValidator;
84 
85  typedef PeakMap MapType;
86  typedef MSSpectrum SpectrumType;
88 
118  class OPENMS_DLLAPI MzMLHandler :
119  public XMLHandler
120  {
121 public:
122 
125 
127  MzMLHandler(MapType& exp, const String& filename, const String& version, const ProgressLogger& logger);
128 
130  MzMLHandler(const MapType& exp, const String& filename, const String& version, const ProgressLogger& logger);
131 
133  ~MzMLHandler() override;
135 
141 
143  void endElement(const XMLCh* const /*uri*/, const XMLCh* const /*local_name*/, const XMLCh* const qname) override;
144 
146  void startElement(const XMLCh* const /*uri*/, const XMLCh* const /*local_name*/, const XMLCh* const qname, const xercesc::Attributes& attributes) override;
147 
149  void characters(const XMLCh* const chars, const XMLSize_t length) override;
150 
152  void writeTo(std::ostream& os) override;
153 
155 
166 
168  void setOptions(const PeakFileOptions& opt);
169 
172 
174 
176  void getCounts(Size& spectra_counts, Size& chromatogram_counts);
177 
187 
191 
193  LOADDETAIL getLoadDetail() const override;
194 
196  void setLoadDetail(const LOADDETAIL d) override;
197 
198 protected:
199 
201  MzMLHandler(const String& filename, const String& version, const ProgressLogger& logger);
202 
211 
213 
218 
226 
234 
240  void addSpectrumMetaData_(const std::vector<MzMLHandlerHelper::BinaryData>& input_data,
241  const Size n,
242  SpectrumType& spectrum) const;
243 
259  void populateSpectraWithData_(std::vector<MzMLHandlerHelper::BinaryData>& input_data,
260  Size& length,
261  const PeakFileOptions& peak_file_options,
262  SpectrumType& spectrum);
263 
276  void populateChromatogramsWithData_(std::vector<MzMLHandlerHelper::BinaryData>& input_data,
277  Size& length,
278  const PeakFileOptions& peak_file_options,
279  ChromatogramType& chromatogram);
280 
283 
285  void handleCVParam_(const String& parent_parent_tag,
286  const String& parent_tag,
287  const String& accession,
288  const String& name,
289  const String& value,
290  const String& unit_accession = "");
291 
293  void handleUserParam_(const String& parent_parent_tag,
294  const String& parent_tag,
295  const String& name,
296  const String& type,
297  const String& value,
298  const String& unit_accession = "");
300 
306 
308  void writeHeader_(std::ostream& os,
309  const MapType& exp,
310  std::vector<std::vector< ConstDataProcessingPtr > >& dps,
311  const Internal::MzMLValidator& validator);
312 
313 
315  void writeSpectrum_(std::ostream& os,
316  const SpectrumType& spec,
317  Size spec_idx,
318  const Internal::MzMLValidator& validator,
319  bool renew_native_ids,
320  std::vector<std::vector< ConstDataProcessingPtr > >& dps);
321 
323  void writeChromatogram_(std::ostream& os,
324  const ChromatogramType& chromatogram,
325  Size chrom_idx,
326  const Internal::MzMLValidator& validator);
327 
328  template <typename ContainerT>
329  void writeContainerData_(std::ostream& os, const PeakFileOptions& pf_options_, const ContainerT& container, const String& array_type);
330 
343  template <typename DataType>
344  void writeBinaryDataArray_(std::ostream& os,
345  const PeakFileOptions& options,
346  std::vector<DataType>& data,
347  bool is32bit,
348  String array_type);
349 
364  void writeBinaryFloatDataArray_(std::ostream& os,
365  const PeakFileOptions& options,
367  const Size spec_chrom_idx,
368  const Size array_idx,
369  bool is_spectrum,
370  const Internal::MzMLValidator& validator);
371 
373  void writeUserParam_(std::ostream& os, const MetaInfoInterface& meta, UInt indent, const String& path, const Internal::MzMLValidator& validator, const std::set<String>& exclude = {}) const;
374 
376  void writeSoftware_(std::ostream& os, const String& id, const Software& software, const Internal::MzMLValidator& validator);
377 
379  void writeSourceFile_(std::ostream& os, const String& id, const SourceFile& software, const Internal::MzMLValidator& validator);
380 
382  void writeDataProcessing_(std::ostream& os, const String& id, const std::vector< ConstDataProcessingPtr >& dps, const Internal::MzMLValidator& validator);
383 
385  void writePrecursor_(std::ostream& os, const Precursor& precursor, const Internal::MzMLValidator& validator);
386 
388  void writeProduct_(std::ostream& os, const Product& product, const Internal::MzMLValidator& validator);
389 
391  String writeCV_(const ControlledVocabulary::CVTerm& c, const DataValue& metaValue) const;
392 
394  bool validateCV_(const ControlledVocabulary::CVTerm& c, const String& path, const Internal::MzMLValidator& validator) const;
395 
397  ControlledVocabulary::CVTerm getChildWithName_(const String& parent_accession, const String& name) const;
398 
400 
401  // MEMBERS
402 
404  MapType* exp_{ nullptr };
405 
407  const MapType* cexp_{ nullptr };
408 
411 
419  std::vector<BinaryData> bin_data_;
423  bool in_spectrum_list_{ false };
425  bool skip_spectrum_{ false };
427  bool skip_chromatogram_{ false };
429  bool rt_set_{ false };
433  std::map<String, std::vector<SemanticValidator::CVTerm> > ref_param_;
435  std::map<String, SourceFile> source_files_;
437  std::map<String, Sample> samples_;
439  std::map<String, Software> software_;
441  std::map<String, Instrument> instruments_;
443  mutable std::map<std::pair<String, String>, bool> cached_terms_;
445  std::map<String, std::vector< DataProcessingPtr > > processing_;
449  UInt selected_ion_count_{ 0 };
450 
459  {
460  std::vector<BinaryData> data;
463  };
464 
466  std::vector<SpectrumData> spectrum_data_;
467 
476  {
477  std::vector<BinaryData> data;
480  };
481 
483  std::vector<ChromatogramData> chromatogram_data_;
484 
486 
494  std::vector<std::pair<std::string, Int64> > spectra_offsets_;
495  std::vector<std::pair<std::string, Int64> > chromatograms_offsets_;
497 
500 
502  Interfaces::IMSDataConsumer* consumer_{ nullptr };
503 
505  UInt scan_count_{ 0 };
506  UInt chromatogram_count_{ 0 };
507  Int scan_count_total_{ -1 };
508  Int chrom_count_total_{ -1 };
510 
514 
515  };
516 
517  //--------------------------------------------------------------------------------
518 
519  } // namespace Internal
520 } // namespace OpenMS
521 
Representation of controlled vocabulary mapping rules (for PSI formats)
Definition: CVMappings.h:57
A 1-dimensional raw data point or peak for chromatograms.
Definition: ChromatogramPeak.h:54
Representation of a controlled vocabulary.
Definition: ControlledVocabulary.h:55
Float data array class.
Definition: DataArrays.h:48
Class to hold strings, numeric values, lists of strings and lists of numeric values.
Definition: DataValue.h:59
The interface of a consumer of spectra and chromatograms.
Definition: IMSDataConsumer.h:70
Handler for mzML file format.
Definition: MzMLHandler.h:120
ControlledVocabulary::CVTerm getChildWithName_(const String &parent_accession, const String &name) const
Helper method to look up a child CV term of parent_accession with the name name. If no such term is f...
MzMLHandler(const String &filename, const String &version, const ProgressLogger &logger)
delegated constructor for the two public versions
Size default_array_length_
The default number of peaks in the current spectrum.
Definition: MzMLHandler.h:421
std::map< String, std::vector< DataProcessingPtr > > processing_
The data processing list: id => Instrument.
Definition: MzMLHandler.h:445
ChromatogramType chromatogram_
The current chromatogram.
Definition: MzMLHandler.h:417
MzMLHandler(const MapType &exp, const String &filename, const String &version, const ProgressLogger &logger)
Constructor for a write-only handler.
void writeProduct_(std::ostream &os, const Product &product, const Internal::MzMLValidator &validator)
Helper method that write precursor information from spectra and chromatograms.
ChromatogramType chromatogram
Definition: MzMLHandler.h:479
MSChromatogram ChromatogramType
Spectrum type.
Definition: MzMLHandler.h:210
LOADDETAIL getLoadDetail() const override
handler which support partial loading, implement this method
void writeBinaryDataArray_(std::ostream &os, const PeakFileOptions &options, std::vector< DataType > &data, bool is32bit, String array_type)
Write a single <binaryDataArray> element to the output.
std::vector< ChromatogramData > chromatogram_data_
Vector of chromatogram data stored for later parallel processing.
Definition: MzMLHandler.h:483
const ControlledVocabulary & cv_
Controlled vocabulary (psi-ms from OpenMS/share/OpenMS/CV/psi-ms.obo)
Definition: MzMLHandler.h:512
~MzMLHandler() override
Destructor.
void writeTo(std::ostream &os) override
Docu in base class XMLHandler::writeTo.
MzMLHandler(MapType &exp, const String &filename, const String &version, const ProgressLogger &logger)
Constructor for a read-only handler.
std::vector< std::pair< std::string, Int64 > > chromatograms_offsets_
Stores binary offsets for each <chromatogram> tag.
Definition: MzMLHandler.h:495
void writeHeader_(std::ostream &os, const MapType &exp, std::vector< std::vector< ConstDataProcessingPtr > > &dps, const Internal::MzMLValidator &validator)
Write out XML header including (everything up to spectrumList / chromatogramList.
void populateChromatogramsWithData_()
Populate all chromatograms on the stack with data from input.
std::vector< BinaryData > data
Definition: MzMLHandler.h:460
std::vector< std::pair< std::string, Int64 > > spectra_offsets_
Stores binary offsets for each <spectrum> tag.
Definition: MzMLHandler.h:494
CVMappings mapping_
Definition: MzMLHandler.h:513
std::map< String, Instrument > instruments_
The data processing list: id => Instrument.
Definition: MzMLHandler.h:441
std::map< String, Software > software_
The software list: id => Software.
Definition: MzMLHandler.h:439
const ProgressLogger & logger_
Progress logger.
Definition: MzMLHandler.h:499
SpectrumType spec_
The current spectrum.
Definition: MzMLHandler.h:415
String current_id_
Id of the current list. Used for referencing param group, source file, sample, software,...
Definition: MzMLHandler.h:431
void setLoadDetail(const LOADDETAIL d) override
handler which support partial loading, implement this method
MSSpectrum SpectrumType
Spectrum type.
Definition: MzMLHandler.h:208
void setMSDataConsumer(Interfaces::IMSDataConsumer *consumer)
Set the IMSDataConsumer consumer which will consume the read data.
PeakFileOptions options_
Options that can be set for loading/storing.
Definition: MzMLHandler.h:410
void getCounts(Size &spectra_counts, Size &chromatogram_counts)
Get the spectra and chromatogram counts of a file.
Size default_array_length
Definition: MzMLHandler.h:461
void handleUserParam_(const String &parent_parent_tag, const String &parent_tag, const String &name, const String &type, const String &value, const String &unit_accession="")
Handles user terms.
MapType::PeakType PeakType
Peak type.
Definition: MzMLHandler.h:204
std::map< std::pair< String, String >, bool > cached_terms_
CV terms-path-combinations that have been checked in validateCV_()
Definition: MzMLHandler.h:443
std::vector< SpectrumData > spectrum_data_
Vector of spectrum data stored for later parallel processing.
Definition: MzMLHandler.h:466
void populateSpectraWithData_()
Populate all spectra on the stack with data from input.
MzMLHandlerHelper::BinaryData BinaryData
Definition: MzMLHandler.h:212
void populateSpectraWithData_(std::vector< MzMLHandlerHelper::BinaryData > &input_data, Size &length, const PeakFileOptions &peak_file_options, SpectrumType &spectrum)
Fill a single spectrum with data from input.
PeakFileOptions & getOptions()
Get the peak file options.
void writeBinaryFloatDataArray_(std::ostream &os, const PeakFileOptions &options, const OpenMS::DataArrays::FloatDataArray &array, const Size spec_chrom_idx, const Size array_idx, bool is_spectrum, const Internal::MzMLValidator &validator)
Write a single <binaryDataArray> element for a float data array to the output.
void writeSpectrum_(std::ostream &os, const SpectrumType &spec, Size spec_idx, const Internal::MzMLValidator &validator, bool renew_native_ids, std::vector< std::vector< ConstDataProcessingPtr > > &dps)
Write out a single spectrum.
void writeSoftware_(std::ostream &os, const String &id, const Software &software, const Internal::MzMLValidator &validator)
Helper method that writes a software.
void fillChromatogramData_()
Fills the current chromatogram with data points and meta data.
void startElement(const XMLCh *const, const XMLCh *const, const XMLCh *const qname, const xercesc::Attributes &attributes) override
Docu in base class XMLHandler::startElelement.
void writeChromatogram_(std::ostream &os, const ChromatogramType &chromatogram, Size chrom_idx, const Internal::MzMLValidator &validator)
Write out a single chromatogram.
void handleCVParam_(const String &parent_parent_tag, const String &parent_tag, const String &accession, const String &name, const String &value, const String &unit_accession="")
Handles CV terms.
void writeUserParam_(std::ostream &os, const MetaInfoInterface &meta, UInt indent, const String &path, const Internal::MzMLValidator &validator, const std::set< String > &exclude={}) const
Writes user terms.
std::vector< BinaryData > bin_data_
The spectrum data (or chromatogram data)
Definition: MzMLHandler.h:419
void writeContainerData_(std::ostream &os, const PeakFileOptions &pf_options_, const ContainerT &container, const String &array_type)
String writeCV_(const ControlledVocabulary::CVTerm &c, const DataValue &metaValue) const
Helper method to write an CV based on a meta value.
bool validateCV_(const ControlledVocabulary::CVTerm &c, const String &path, const Internal::MzMLValidator &validator) const
Helper method to validate if the given CV is allowed in the current location (path)
String default_processing_
id of the default data processing (used when no processing is defined)
Definition: MzMLHandler.h:447
void writeSourceFile_(std::ostream &os, const String &id, const SourceFile &software, const Internal::MzMLValidator &validator)
Helper method that writes a source file.
void characters(const XMLCh *const chars, const XMLSize_t length) override
Docu in base class XMLHandler::characters.
void endElement(const XMLCh *const, const XMLCh *const, const XMLCh *const qname) override
Docu in base class XMLHandler::endElement.
std::map< String, Sample > samples_
The sample list: id => Sample.
Definition: MzMLHandler.h:437
void setOptions(const PeakFileOptions &opt)
Set the peak file options.
std::map< String, std::vector< SemanticValidator::CVTerm > > ref_param_
The referencing param groups: id => array (accession, value)
Definition: MzMLHandler.h:433
std::map< String, SourceFile > source_files_
The source files: id => SourceFile.
Definition: MzMLHandler.h:435
void addSpectrumMetaData_(const std::vector< MzMLHandlerHelper::BinaryData > &input_data, const Size n, SpectrumType &spectrum) const
Add extra data arrays to a spectrum.
void populateChromatogramsWithData_(std::vector< MzMLHandlerHelper::BinaryData > &input_data, Size &length, const PeakFileOptions &peak_file_options, ChromatogramType &chromatogram)
Fill a single chromatogram with data from input.
MapType::ChromatogramPeakType ChromatogramPeakType
Chromatogram peak type.
Definition: MzMLHandler.h:206
void writePrecursor_(std::ostream &os, const Precursor &precursor, const Internal::MzMLValidator &validator)
Helper method that write precursor information from spectra and chromatograms.
SpectrumType spectrum
Definition: MzMLHandler.h:462
void writeDataProcessing_(std::ostream &os, const String &id, const std::vector< ConstDataProcessingPtr > &dps, const Internal::MzMLValidator &validator)
Helper method that writes a data processing list.
Data necessary to generate a single chromatogram.
Definition: MzMLHandler.h:476
Data necessary to generate a single spectrum.
Definition: MzMLHandler.h:459
Semantically validates MzXML files.
Definition: MzMLValidator.h:51
Base class for XML handlers.
Definition: XMLHandler.h:326
LOADDETAIL
Definition: XMLHandler.h:349
The representation of a chromatogram.
Definition: MSChromatogram.h:57
In-Memory representation of a mass spectrometry run.
Definition: MSExperiment.h:72
The representation of a 1D spectrum.
Definition: MSSpectrum.h:70
Interface for classes that can store arbitrary meta information (Type-Name-Value tuples).
Definition: MetaInfoInterface.h:61
A 1-dimensional raw data point or peak.
Definition: Peak1D.h:54
Options for loading files containing peak data.
Definition: PeakFileOptions.h:48
Precursor meta information.
Definition: Precursor.h:61
Product meta information.
Definition: Product.h:50
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:53
Description of the software used for processing.
Definition: Software.h:50
Description of a file location, used to store the origin of (meta) data.
Definition: SourceFile.h:48
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
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
const double c
Definition: Constants.h:214
MSChromatogram ChromatogramType
Definition: MzDataHandler.h:61
MSSpectrum SpectrumType
Definition: MzDataHandler.h:60
PeakMap MapType
XML handler for MzDataFile.
Definition: MzDataHandler.h:59
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:48
Representation of a CV term.
Definition: ControlledVocabulary.h:61
Representation for binary data in mzML.
Definition: MzMLHandlerHelper.h:70