OpenMS  2.6.0
OpenSwathWorkflow.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: Hannes Roest $
32 // $Authors: Hannes Roest $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
37 // Interfaces
42 
43 #include <OpenMS/FORMAT/MzMLFile.h> // debug file store only
44 
45 // Kernel and implementations
51 
52 // Helpers
54 // #include <OpenMS/ANALYSIS/OPENSWATH/DATAACCESS/DataAccessHelper.h>
58 
59 // Algorithms
66 
67 #include <cassert>
68 #include <limits>
69 
70 // #define OPENSWATH_WORKFLOW_DEBUG
71 
72 // The workflow class
73 namespace OpenMS
74 {
75 
83  {
91  bool ppm;
98  };
99 
100  class OPENMS_DLLAPI OpenSwathWorkflowBase :
101  public ProgressLogger
102  {
103 
104 protected:
105 
112  use_ms1_traces_(false),
113  use_ms1_ion_mobility_(false),
114  prm_(false),
115  threads_outer_loop_(-1)
116  {
117  }
118 
131  OpenSwathWorkflowBase(bool use_ms1_traces, bool use_ms1_ion_mobility, bool prm, int threads_outer_loop) :
132  use_ms1_traces_(use_ms1_traces),
133  use_ms1_ion_mobility_(use_ms1_ion_mobility),
134  prm_(prm),
135  threads_outer_loop_(threads_outer_loop)
136  {
137  }
138 
152  void MS1Extraction_(const OpenSwath::SpectrumAccessPtr ms1_map,
153  const std::vector< OpenSwath::SwathMap > & swath_maps,
154  std::vector< MSChromatogram >& ms1_chromatograms,
155  Interfaces::IMSDataConsumer * chromConsumer,
156  const ChromExtractParams & cp,
157  const OpenSwath::LightTargetedExperiment& transition_exp,
158  const TransformationDescription& trafo_inverse,
159  bool ms1only = false,
160  int ms1_isotopes = 0);
161 
179  void prepareExtractionCoordinates_(std::vector< OpenSwath::ChromatogramPtr > & chrom_list,
180  std::vector< ChromatogramExtractorAlgorithm::ExtractionCoordinates > & coordinates,
181  const OpenSwath::LightTargetedExperiment & transition_exp_used,
182  const TransformationDescription trafo_inverse,
183  const ChromExtractParams & cp,
184  const bool ms1 = false,
185  const int ms1_isotopes = -1) const;
186 
187 
195  OpenSwath::SpectrumAccessPtr ms1_map_ = nullptr;
196 
199 
202 
204  bool prm_;
205 
216 
217 };
218 
235  class OPENMS_DLLAPI OpenSwathCalibrationWorkflow :
236  public OpenSwathWorkflowBase
237  {
238  public:
239 
242  {
243  }
244 
245  explicit OpenSwathCalibrationWorkflow(bool use_ms1_traces) :
246  OpenSwathWorkflowBase(use_ms1_traces, false, false, -1)
247  {
248  }
249 
274  TransformationDescription performRTNormalization(const OpenSwath::LightTargetedExperiment & irt_transitions,
275  std::vector< OpenSwath::SwathMap > & swath_maps,
276  TransformationDescription& im_trafo,
277  double min_rsq,
278  double min_coverage,
279  const Param & feature_finder_param,
280  const ChromExtractParams & cp_irt,
281  const Param& irt_detection_param,
282  const Param& calibration_param,
283  const String& irt_mzml_out,
284  Size debug_level,
285  bool sonar = false,
286  bool load_into_memory = false);
287 
288  public:
289 
319  TransformationDescription doDataNormalization_(const OpenSwath::LightTargetedExperiment& transition_exp_,
320  const std::vector< OpenMS::MSChromatogram >& chromatograms,
321  TransformationDescription& im_trafo,
322  std::vector< OpenSwath::SwathMap > & swath_maps,
323  double min_rsq,
324  double min_coverage,
325  const Param& default_ffparam,
326  const Param& irt_detection_param,
327  const Param& calibration_param);
328 
340  void simpleExtractChromatograms_(const std::vector< OpenSwath::SwathMap > & swath_maps,
341  const OpenSwath::LightTargetedExperiment & irt_transitions,
342  std::vector< OpenMS::MSChromatogram > & chromatograms,
343  const TransformationDescription& trafo,
344  const ChromExtractParams & cp,
345  bool sonar,
346  bool load_into_memory);
347 
354  static void addChromatograms(MSChromatogram& base_chrom, const MSChromatogram& newchrom);
355 
356  };
357 
382  class OPENMS_DLLAPI OpenSwathWorkflow :
383  public OpenSwathWorkflowBase
384  {
387 
388  public:
389 
404  OpenSwathWorkflow(bool use_ms1_traces, bool use_ms1_ion_mobility, bool prm, int threads_outer_loop) :
405  OpenSwathWorkflowBase(use_ms1_traces, use_ms1_ion_mobility, prm, threads_outer_loop)
406  {
407  }
408 
434  void performExtraction(const std::vector< OpenSwath::SwathMap > & swath_maps,
435  const TransformationDescription trafo,
436  const ChromExtractParams & chromatogram_extraction_params,
437  const ChromExtractParams & ms1_chromatogram_extraction_params,
438  const Param & feature_finder_param,
439  const OpenSwath::LightTargetedExperiment& assay_library,
440  FeatureMap& result_featureFile,
441  bool store_features_in_featureFile,
442  OpenSwathTSVWriter & result_tsv,
443  OpenSwathOSWWriter & result_osw,
444  Interfaces::IMSDataConsumer * result_chromatograms,
445  int batchSize,
446  int ms1_isotopes,
447  bool load_into_memory);
448 
449  protected:
450 
451 
466  void writeOutFeaturesAndChroms_(std::vector< OpenMS::MSChromatogram > & chromatograms,
467  const FeatureMap & featureFile,
468  FeatureMap& out_featureFile,
469  bool store_features,
470  Interfaces::IMSDataConsumer * chromConsumer);
471 
508  void scoreAllChromatograms_(
509  const std::vector< OpenMS::MSChromatogram > & ms2_chromatograms,
510  const std::vector< OpenMS::MSChromatogram > & ms1_chromatograms,
511  const std::vector< OpenSwath::SwathMap >& swath_maps,
512  const OpenSwath::LightTargetedExperiment& transition_exp,
513  const Param& feature_finder_param,
515  const double rt_extraction_window,
516  FeatureMap& output,
517  OpenSwathTSVWriter & tsv_writer,
518  OpenSwathOSWWriter & osw_writer,
519  int nr_ms1_isotopes = 0,
520  bool ms1only = false) const;
521 
537  void selectCompoundsForBatch_(const OpenSwath::LightTargetedExperiment& transition_exp_used_all,
538  OpenSwath::LightTargetedExperiment& transition_exp_used, int batch_size, size_t batch_idx);
539 
550  void copyBatchTransitions_(const std::vector<OpenSwath::LightCompound>& used_compounds,
551  const std::vector<OpenSwath::LightTransition>& all_transitions,
552  std::vector<OpenSwath::LightTransition>& output);
553  };
554 
580  class OPENMS_DLLAPI OpenSwathWorkflowSonar :
581  public OpenSwathWorkflow
582  {
583 
584  public:
585 
586  explicit OpenSwathWorkflowSonar(bool use_ms1_traces) :
587  OpenSwathWorkflow(use_ms1_traces, false, false, -1)
588  {
589  }
590 
612  void performExtractionSonar(const std::vector< OpenSwath::SwathMap > & swath_maps,
613  const TransformationDescription trafo,
614  const ChromExtractParams & cp,
615  const ChromExtractParams & cp_ms1,
616  const Param & feature_finder_param,
617  const OpenSwath::LightTargetedExperiment& transition_exp,
618  FeatureMap& out_featureFile,
619  bool store_features,
620  OpenSwathTSVWriter & tsv_writer,
621  OpenSwathOSWWriter & osw_writer,
622  Interfaces::IMSDataConsumer * chromConsumer,
623  int batchSize,
624  bool load_into_memory);
625 
629  void computeSonarWindows_(const std::vector< OpenSwath::SwathMap > & swath_maps,
630  double & sonar_winsize,
631  double & sonar_start,
632  double & sonar_end,
633  int & sonar_total_win);
634 
638  void performSonarExtraction_(const std::vector< OpenSwath::SwathMap > & used_maps,
639  const std::vector< ChromatogramExtractor::ExtractionCoordinates > & coordinates,
640  std::vector< OpenSwath::ChromatogramPtr > & chrom_list,
641  const ChromExtractParams & cp);
642 
650  };
651 
652 }
653 
654 
MSDataTransformingConsumer.h
OpenMS::UniqueIdInterface::ensureUniqueId
Size ensureUniqueId()
Assigns a valid unique id, but only if the present one is invalid. Returns 1 if the unique id was cha...
Definition: UniqueIdInterface.h:154
OpenMS::TransitionTSVFile
This class supports reading and writing of OpenSWATH transition lists.
Definition: TransitionTSVFile.h:144
OpenMS::ChromExtractParams::extraction_function
String extraction_function
The extraction function in mass space.
Definition: OpenSwathWorkflow.h:93
OpenMS::ChromExtractParams::extra_rt_extract
double extra_rt_extract
Whether to extract some extra in the retention time (can be useful if one wants to look at the chroma...
Definition: OpenSwathWorkflow.h:97
LinearResamplerAlign.h
OpenMS::Param::copy
Param copy(const String &prefix, bool remove_prefix=false) const
Returns a new Param object containing all entries that start with prefix.
OpenMS::FileTypes::SQMASS
SqLite format for mass and chromatograms, see SqMassFile.
Definition: FileTypes.h:103
FileHandler.h
FileTypes.h
OpenMS::OpenSwathCalibrationWorkflow::simpleExtractChromatograms_
void simpleExtractChromatograms_(const std::vector< OpenSwath::SwathMap > &swath_maps, const OpenSwath::LightTargetedExperiment &irt_transitions, std::vector< OpenMS::MSChromatogram > &chromatograms, const TransformationDescription &trafo, const ChromExtractParams &cp, bool sonar, bool load_into_memory)
Simple method to extract chromatograms (for the RT-normalization peptides)
OpenMS::Param::setMinFloat
void setMinFloat(const String &key, double min)
Sets the minimum value for the floating point or floating point list parameter key.
OpenMS::OpenSwathWorkflowBase::prm_
bool prm_
Whether data is acquired in targeted DIA (e.g. PRM mode) with potentially overlapping windows.
Definition: OpenSwathWorkflow.h:204
OpenMS::Exception::IllegalArgument
A method or algorithm argument contains illegal values.
Definition: Exception.h:648
TransitionTSVFile.h
OpenSwathWorkflow.h
SwathMap.h
OpenMS::Interfaces::IMSDataConsumer
The interface of a consumer of spectra and chromatograms.
Definition: IMSDataConsumer.h:69
OpenMS::OpenSwathWorkflowBase::OpenSwathWorkflowBase
OpenSwathWorkflowBase(bool use_ms1_traces, bool use_ms1_ion_mobility, bool prm, int threads_outer_loop)
Constructor.
Definition: OpenSwathWorkflow.h:131
OpenMS::Exception::InvalidValue
Invalid value exception.
Definition: Exception.h:335
OpenMS::FileHandler::getTypeByFileName
static FileTypes::Type getTypeByFileName(const String &filename)
Determines the file type from a file name.
OpenMS::MRMFeatureFinderScoring
The MRMFeatureFinder finds and scores peaks of transitions that co-elute.
Definition: MRMFeatureFinderScoring.h:93
SwathMapMassCorrection.h
OpenMS::OpenSwathCalibrationWorkflow::OpenSwathCalibrationWorkflow
OpenSwathCalibrationWorkflow(bool use_ms1_traces)
Definition: OpenSwathWorkflow.h:245
OpenMS::ChromExtractParams::min_upper_edge_dist
double min_upper_edge_dist
Whether to not extract anything closer than this (in Da) from the upper edge.
Definition: OpenSwathWorkflow.h:85
OpenMS::Param::setValue
void setValue(const String &key, const DataValue &value, const String &description="", const StringList &tags=StringList())
Sets a value.
OpenMS::OpenSwathTSVWriter
Class to write out an OpenSwath TSV output (mProphet input).
Definition: OpenSwathTSVWriter.h:129
OpenMS::ExperimentalSettings
Description of the experimental settings.
Definition: ExperimentalSettings.h:59
OpenMS::String
A more convenient string class.
Definition: String.h:59
MSDataSqlConsumer.h
OpenMS::OpenSwathOSWWriter
Class to write out an OpenSwath OSW SQLite output (PyProphet input).
Definition: OpenSwathOSWWriter.h:115
OpenMS::MSDataTransformingConsumer::setSpectraProcessingFunc
virtual void setSpectraProcessingFunc(std::function< void(SpectrumType &)> f_spec)
Sets the lambda function to be called for every spectrum which is passed to this interface.
MzMLFile.h
TransitionExperiment.h
ISpectrumAccess.h
OpenMS::OpenSwathWorkflow
Execute all steps in an OpenSwath analysis.
Definition: OpenSwathWorkflow.h:382
OpenMS::Param::setValidStrings
void setValidStrings(const String &key, const std::vector< String > &strings)
Sets the valid strings for the parameter key.
OpenMS::OpenSwathWorkflowBase::OpenSwathWorkflowBase
OpenSwathWorkflowBase()
Default constructor.
Definition: OpenSwathWorkflow.h:111
SimpleOpenMSSpectraAccessFactory.h
OpenMS::Size
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
FeatureXMLFile.h
DataStructures.h
OpenMS::ChromExtractParams::mz_extraction_window
double mz_extraction_window
Extraction window in Da or ppm (e.g. 50ppm means extraction +/- 25ppm)
Definition: OpenSwathWorkflow.h:87
IMSDataConsumer.h
OpenMS::TOPPOpenSwathBase
Definition: OpenSwathBase.h:84
OpenMS::Param::getValue
const DataValue & getValue(const String &key) const
Returns a value of a parameter.
OpenMS::ChromExtractParams::rt_extraction_window
double rt_extraction_window
The retention time extraction window.
Definition: OpenSwathWorkflow.h:95
ChromatogramExtractor.h
OpenMS::ChromExtractParams
ChromatogramExtractor parameters.
Definition: OpenSwathWorkflow.h:82
SpectrumAccessOpenMS.h
OpenMS::FileTypes::UNKNOWN
Unknown file extension.
Definition: FileTypes.h:60
OpenSwath::LightTargetedExperiment
Definition: TransitionExperiment.h:207
OpenMS::TransformationDescription::invert
void invert()
Computes an (approximate) inverse of the transformation.
OpenSwath::SwathQC
Quality Control function for OpenSwath.
Definition: SwathQC.h:63
OpenMS::SwathWindowLoader::readSwathWindows
static void readSwathWindows(const std::string &filename, std::vector< double > &swath_prec_lower, std::vector< double > &swath_prec_upper)
Reading a tab delimited file specifying the SWATH windows.
SwathWindowLoader.h
OpenSwathHelper.h
SwathFile.h
OpenSwath::LightTargetedExperiment::getProteins
std::vector< LightProtein > & getProteins()
Definition: TransitionExperiment.h:239
SpectrumAccessOpenMSInMemory.h
OpenMS
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
OpenSwath::LightTargetedExperiment::getCompounds
std::vector< LightCompound > & getCompounds()
Definition: TransitionExperiment.h:229
MRMRTNormalizer.h
OpenSwath::LightTargetedExperiment::getTransitions
std::vector< LightTransition > & getTransitions()
Definition: TransitionExperiment.h:219
SwathQC.h
OpenMS::ProgressLogger
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:54
ProgressLogger.h
OpenMS::OpenSwathWorkflowBase::use_ms1_ion_mobility_
bool use_ms1_ion_mobility_
Whether to use ion mobility extraction on MS1 traces.
Definition: OpenSwathWorkflow.h:201
MRMFeatureFinderScoring.h
OpenSwathBase.h
TransformationXMLFile.h
OpenMS::OpenSwathWorkflowSonar::OpenSwathWorkflowSonar
OpenSwathWorkflowSonar(bool use_ms1_traces)
Definition: OpenSwathWorkflow.h:586
int
OpenMS::Param::setMinInt
void setMinInt(const String &key, Int min)
Sets the minimum value for the integer or integer list parameter key.
OpenMS::FileTypes::Type
Type
Actual file types enum.
Definition: FileTypes.h:58
OpenMS::OpenSwathCalibrationWorkflow::doDataNormalization_
TransformationDescription doDataNormalization_(const OpenSwath::LightTargetedExperiment &transition_exp_, const std::vector< OpenMS::MSChromatogram > &chromatograms, TransformationDescription &im_trafo, std::vector< OpenSwath::SwathMap > &swath_maps, double min_rsq, double min_coverage, const Param &default_ffparam, const Param &irt_detection_param, const Param &calibration_param)
Perform retention time and m/z calibration.
SpectrumAccessTransforming.h
OPENMS_LOG_DEBUG
#define OPENMS_LOG_DEBUG
Macro for general debugging information.
Definition: LogStream.h:470
OpenMS::Param::setMaxFloat
void setMaxFloat(const String &key, double max)
Sets the maximum value for the floating point or floating point list parameter key.
OpenMS::FileHandler::getType
static FileTypes::Type getType(const String &filename)
Tries to determine the file type (by name or content)
OpenMS::ChromExtractParams::ppm
bool ppm
Whether the extraction window is given in ppm or Da.
Definition: OpenSwathWorkflow.h:91
OpenMS::MSDataTransformingConsumer
Transforming consumer of MS data.
Definition: MSDataTransformingConsumer.h:58
OpenMS::TransformationDescription::apply
double apply(double value) const
Applies the transformation to value.
OpenMS::DefaultParamHandler::getDefaults
const Param & getDefaults() const
Non-mutable access to the default parameters.
OpenMS::OpenSwathWorkflow::TransitionType
OpenSwath::LightTransition TransitionType
Definition: OpenSwathWorkflow.h:385
OpenMS::OpenSwathCalibrationWorkflow
Execute all steps for retention time and m/z calibration of SWATH-MS data.
Definition: OpenSwathWorkflow.h:235
OpenMS::StringList
std::vector< String > StringList
Vector of String.
Definition: ListUtils.h:70
OpenMS::OpenSwathCalibrationWorkflow::OpenSwathCalibrationWorkflow
OpenSwathCalibrationWorkflow()
Definition: OpenSwathWorkflow.h:240
OpenMS::FeatureXMLFile::store
void store(const String &filename, const FeatureMap &feature_map)
stores the map feature_map in file with name filename.
main
int main(int argc, const char **argv)
Definition: INIFileEditor.cpp:73
MSExperiment.h
OpenMS::OpenSwathWorkflowBase::use_ms1_traces_
bool use_ms1_traces_
Whether to use the MS1 traces.
Definition: OpenSwathWorkflow.h:198
DataAccessHelper.h
OpenMS::SwathMapMassCorrection
A class containing correction functions for Swath MS maps.
Definition: SwathMapMassCorrection.h:52
OpenMS::FeatureMap
A container for features.
Definition: FeatureMap.h:97
OpenMS::FileTypes::PQP
OpenSWATH Peptide Query Parameter (PQP) SQLite DB, see TransitionPQPFile.
Definition: FileTypes.h:104
OpenMS::Param::remove
void remove(const String &key)
Remove the entry key or a section key (when suffix is ':')
OpenMS::OpenSwathWorkflowBase
Definition: OpenSwathWorkflow.h:100
OpenMS::OpenSwathWorkflow::MRMTransitionGroupType
MRMTransitionGroup< MSChromatogram, TransitionType > MRMTransitionGroupType
Definition: OpenSwathWorkflow.h:386
OpenSwath::SpectrumAccessPtr
boost::shared_ptr< ISpectrumAccess > SpectrumAccessPtr
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:89
OpenMS::MRMTransitionGroup
The representation of a group of transitions in a targeted proteomics experiment.
Definition: MRMTransitionGroup.h:67
OpenMS::FeatureXMLFile
This class provides Input/Output functionality for feature maps.
Definition: FeatureXMLFile.h:68
OpenMS::DataProcessing::QUANTITATION
Quantitation.
Definition: DataProcessing.h:72
MRMTransitionGroupPicker.h
OpenMS::FileTypes::nameToType
static Type nameToType(const String &name)
Converts a file type name into a Type.
OpenSwathOSWWriter.h
OpenMS::MSChromatogram
The representation of a chromatogram.
Definition: MSChromatogram.h:54
OpenMS::ChromExtractParams::im_extraction_window
double im_extraction_window
Extraction window in ion mobility.
Definition: OpenSwathWorkflow.h:89
OpenMS::OpenSwathWorkflowBase::threads_outer_loop_
int threads_outer_loop_
How many threads should be used for the outer loop.
Definition: OpenSwathWorkflow.h:215
OpenMS::OpenSwathWorkflowSonar
Execute all steps in an OpenEcho analysis (OpenSwath for SONAR data)
Definition: OpenSwathWorkflow.h:580
OpenMS::OpenSwathWorkflow::OpenSwathWorkflow
OpenSwathWorkflow(bool use_ms1_traces, bool use_ms1_ion_mobility, bool prm, int threads_outer_loop)
Constructor.
Definition: OpenSwathWorkflow.h:404
OpenMS::Param
Management and storage of parameters / INI files.
Definition: Param.h:73
OpenMS::File::getTempDirectory
static String getTempDirectory()
The current OpenMS temporary data path (for temporary files)
OpenSwath::ChromatogramPtr
boost::shared_ptr< Chromatogram > ChromatogramPtr
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/DataStructures.h:172
OpenMS::String::ensureLastChar
String & ensureLastChar(char end)
Makes sure the string ends with the character end.
OPENMS_LOG_INFO
#define OPENMS_LOG_INFO
Macro if a information, e.g. a status should be reported.
Definition: LogStream.h:465
TransitionPQPFile.h
MSDataWritingConsumer.h
OpenSwath::LightTransition
Definition: TransitionExperiment.h:46
OpenSwathTSVWriter.h
TraMLFile.h
OpenMS::TransformationDescription
Generic description of a coordinate transformation.
Definition: TransformationDescription.h:61
OpenMS::MSDataTransformingConsumer::setExperimentalSettingsFunc
virtual void setExperimentalSettingsFunc(std::function< void(const OpenMS::ExperimentalSettings &)> f_exp_settings)
Sets the lambda function to be called when setExperimentalSettings is called via this interface.
File.h
OpenMS::ProgressLogger::setLogType
void setLogType(LogType type) const
Sets the progress log that should be used. The default type is NONE!
TOPPBase.h
OpenMS::FileTypes::typeToName
static String typeToName(Type type)
Returns the name/extension of the type.