251 const std::string& parent_tag,
252 const std::string& accession,
253 const std::string& name,
254 const std::string& value,
255 const std::string& unit_accession =
"");
259 const std::string& parent_tag,
260 const std::string& name,
261 const std::string& type,
262 const std::string& value,
263 const std::string& unit_accession =
"");
275 std::vector<std::vector< ConstDataProcessingPtr > >& dps,
284 bool renew_native_ids,
285 std::vector<std::vector< ConstDataProcessingPtr > >& dps);
293 template <
typename ContainerT>
308 template <
typename DataType>
311 std::vector<DataType>& data,
313 std::string array_type);
332 const Size spec_chrom_idx,
333 const Size array_idx,
388 bool in_spectrum_list_{
false };
390 bool skip_spectrum_{
false };
392 bool skip_chromatogram_{
false };
394 bool rt_set_{
false };
398 std::map<std::string, std::vector<SemanticValidator::CVTerm> >
ref_param_;
410 std::map<std::string, std::vector< DataProcessingPtr > >
processing_;
472 Int scan_count_total_{ -1 };
473 Int chrom_count_total_{ -1 };
char16_t XMLCh
Definition ClassTest.h:30
Representation of controlled vocabulary mapping rules (for PSI formats)
Definition CVMappings.h:31
A 1-dimensional raw data point or peak for chromatograms.
Definition ChromatogramPeak.h:29
Definition ControlledVocabulary.h:29
Float data array class.
Definition DataArrays.h:25
Class to hold strings, numeric values, lists of strings and lists of numeric values.
Definition DataValue.h:32
The interface of a consumer of spectra and chromatograms.
Definition IMSDataConsumer.h:46
Handler for mzML file format.
Definition MzMLHandler.h:94
void handleUserParam_(const std::string &parent_parent_tag, const std::string &parent_tag, const std::string &name, const std::string &type, const std::string &value, const std::string &unit_accession="")
Handles user terms.
ControlledVocabulary::CVTerm getChildWithName_(const std::string &parent_accession, const std::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...
Size default_array_length_
The default number of peaks in the current spectrum.
Definition MzMLHandler.h:386
ChromatogramType chromatogram_
The current chromatogram.
Definition MzMLHandler.h:382
void writeSoftware_(std::ostream &os, const std::string &id, const Software &software, const Internal::MzMLValidator &validator)
Helper method that writes a software.
MzMLHandler(const std::string &filename, const std::string &version, const ProgressLogger &logger)
delegated constructor for the two public versions
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:444
MSChromatogram ChromatogramType
Spectrum type.
Definition MzMLHandler.h:184
std::map< std::string, SourceFile > source_files_
The source files: id => SourceFile.
Definition MzMLHandler.h:400
MzMLHandler(const MapType &exp, const std::string &filename, const std::string &version, const ProgressLogger &logger)
Constructor for a write-only handler.
LOADDETAIL getLoadDetail() const override
handler which support partial loading, implement this method
bool validateCV_(const ControlledVocabulary::CVTerm &c, const std::string &path, const Internal::MzMLValidator &validator) const
Helper method to validate if the given CV is allowed in the current location (path)
std::vector< ChromatogramData > chromatogram_data_
Vector of chromatogram data stored for later parallel processing.
Definition MzMLHandler.h:448
const ControlledVocabulary & cv_
Controlled vocabulary (psi-ms from OpenMS/share/OpenMS/CV/psi-ms.obo)
Definition MzMLHandler.h:477
std::map< std::string, std::vector< SemanticValidator::CVTerm > > ref_param_
The referencing param groups: id => array (accession, value)
Definition MzMLHandler.h:398
~MzMLHandler() override
Destructor.
void writeTo(std::ostream &os) override
Docu in base class XMLHandler::writeTo.
std::string current_id_
Id of the current list. Used for referencing param group, source file, sample, software,...
Definition MzMLHandler.h:396
std::vector< std::pair< std::string, Int64 > > chromatograms_offsets_
Stores binary offsets for each <chromatogram> tag.
Definition MzMLHandler.h:460
void writeUserParam_(std::ostream &os, const MetaInfoInterface &meta, UInt indent, const std::string &path, const Internal::MzMLValidator &validator, const std::set< std::string > &exclude={}) const
Writes user terms.
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:425
std::vector< std::pair< std::string, Int64 > > spectra_offsets_
Stores binary offsets for each <spectrum> tag.
Definition MzMLHandler.h:459
CVMappings mapping_
Definition MzMLHandler.h:478
MzMLHandler(MapType &exp, const std::string &filename, const std::string &version, const ProgressLogger &logger)
Constructor for a read-only handler.
const ProgressLogger & logger_
Progress logger.
Definition MzMLHandler.h:464
void writeBinaryDataArray_(std::ostream &os, const PeakFileOptions &options, std::vector< DataType > &data, bool is32bit, std::string array_type)
Write a single <binaryDataArray> element to the output.
SpectrumType spec_
The current spectrum.
Definition MzMLHandler.h:380
void setLoadDetail(const LOADDETAIL d) override
handler which support partial loading, implement this method
void writeDataProcessing_(std::ostream &os, const std::string &id, const std::vector< ConstDataProcessingPtr > &dps, const Internal::MzMLValidator &validator)
Helper method that writes a data processing list.
MSSpectrum SpectrumType
Spectrum type.
Definition MzMLHandler.h:182
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:375
void getCounts(Size &spectra_counts, Size &chromatogram_counts)
Get the spectra and chromatogram counts of a file.
Size default_array_length
Definition MzMLHandler.h:426
MapType::PeakType PeakType
Peak type.
Definition MzMLHandler.h:178
std::vector< SpectrumData > spectrum_data_
Vector of spectrum data stored for later parallel processing.
Definition MzMLHandler.h:431
void populateSpectraWithData_()
Populate all spectra on the stack with data from input.
MzMLHandlerHelper::BinaryData BinaryData
Definition MzMLHandler.h:186
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.
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 writeSourceFile_(std::ostream &os, const std::string &id, const SourceFile &software, const Internal::MzMLValidator &validator)
Helper method that writes a source file.
void handleCVParam_(const std::string &parent_parent_tag, const std::string &parent_tag, const std::string &accession, const std::string &name, const std::string &value, const std::string &unit_accession="")
Handles CV terms.
PeakFileOptions & getOptions()
Get the peak file options.
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.
std::string writeCV_(const ControlledVocabulary::CVTerm &c, const DataValue &metaValue) const
Helper method to write an CV based on a meta value.
void writeChromatogram_(std::ostream &os, const ChromatogramType &chromatogram, Size chrom_idx, const Internal::MzMLValidator &validator)
Write out a single chromatogram.
std::map< std::string, Sample > samples_
The sample list: id => Sample.
Definition MzMLHandler.h:402
std::vector< BinaryData > bin_data_
The spectrum data (or chromatogram data)
Definition MzMLHandler.h:384
std::map< std::string, Instrument > instruments_
The data processing list: id => Instrument.
Definition MzMLHandler.h:406
std::string default_processing_
id of the default data processing (used when no processing is defined)
Definition MzMLHandler.h:412
std::map< std::string, std::vector< DataProcessingPtr > > processing_
The data processing list: id => Instrument.
Definition MzMLHandler.h:410
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.
void writeContainerData_(std::ostream &os, const PeakFileOptions &pf_options_, const ContainerT &container, const std::string &array_type)
void setOptions(const PeakFileOptions &opt)
Set the peak file options.
std::map< std::string, Software > software_
The software list: id => Software.
Definition MzMLHandler.h:404
std::map< std::pair< std::string, std::string >, bool > cached_terms_
CV terms-path-combinations that have been checked in validateCV_()
Definition MzMLHandler.h:408
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:180
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:427
Data necessary to generate a single chromatogram.
Definition MzMLHandler.h:441
Data necessary to generate a single spectrum.
Definition MzMLHandler.h:424
Semantic validator for mzML files.
Definition MzMLValidator.h:41
Base class for XML handlers.
Definition XMLHandler.h:316
LOADDETAIL
Definition XMLHandler.h:339
The representation of a chromatogram.
Definition MSChromatogram.h:30
In-Memory representation of a mass spectrometry run.
Definition MSExperiment.h:49
The representation of a 1D spectrum.
Definition MSSpectrum.h:44
A 1-dimensional raw data point or peak.
Definition Peak1D.h:30
Options for loading files containing peak data.
Definition PeakFileOptions.h:22
Precursor meta information.
Definition Precursor.h:37
Product meta information.
Definition Product.h:26
Base class for all classes that want to report their progress.
Definition ProgressLogger.h:27
Description of the software used for processing.
Definition Software.h:26
Description of a file location, used to store the origin of (meta) data.
Definition SourceFile.h:23
int Int
Signed integer type.
Definition Types.h:72
unsigned int UInt
Unsigned integer type.
Definition Types.h:64
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition Types.h:97
MSChromatogram ChromatogramType
Definition MzDataHandler.h:35
MSSpectrum SpectrumType
Definition MzDataHandler.h:34
PeakMap MapType
XML handler for MzDataFile.
Definition MzDataHandler.h:33
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
Representation of a CV term.
Definition ControlledVocabulary.h:50
Representation for binary data in mzML.
Definition MzMLHandlerHelper.h:44