OpenMS
Loading...
Searching...
No Matches
TOPPBase.h
Go to the documentation of this file.
1// Copyright (c) 2002-present, OpenMS Inc. -- EKU Tuebingen, ETH Zurich, and FU Berlin
2// SPDX-License-Identifier: BSD-3-Clause
3//
4// --------------------------------------------------------------------------
5// $Maintainer: Timo Sachsenberg $
6// $Authors: Marc Sturm, Clemens Groepl $
7// --------------------------------------------------------------------------
8
9#pragma once
10
12
14
16
18
20
21#include <iosfwd>
22#include <map>
23#include <memory>
24#include <optional>
25#include <vector>
26
27namespace OpenMS
28{
29 class FeatureMap;
30 class ConsensusMap;
31 struct ParameterInformation;
32
53 class OPENMS_DLLAPI TOPPBase
54 {
55public:
56 inline static const char* TAG_OUTPUT_FILE = "output file";
57 inline static const char* TAG_INPUT_FILE = "input file";
58 inline static const char* TAG_OUTPUT_DIR = "output dir";
59 inline static const char* TAG_OUTPUT_PREFIX = "output prefix";
60 inline static const char* TAG_ADVANCED = "advanced";
61 inline static const char* TAG_REQUIRED = "required";
62
82
83
84
86 TOPPBase() = delete;
87
89 TOPPBase(const TOPPBase&) = delete;
90
101 TOPPBase(const std::string& name, const std::string& description, bool official = true, const std::vector<Citation>& citations = {}, bool toolhandler_test = true);
102
104 virtual ~TOPPBase();
105
107 ExitCodes main(int argc, const char** argv);
108
116 static void setMaxNumberOfThreads(int num_threads);
117
125 std::string getToolPrefix() const;
126
128 std::string getDocumentationURL() const;
129
131 static const Citation cite_openms;
132
133 private:
135 std::string const tool_name_;
136
138 std::string const tool_description_;
139
142
144 std::string const ini_location_;
145
148
151
154
157
160
163
166 mutable std::unique_ptr<std::ofstream> log_;
167
176 void enableLogging_() const;
177
179 std::vector<ParameterInformation> parameters_;
180
190 virtual Param getSubsectionDefaults_(const std::string& section) const;
191
200
202 std::map<std::string, std::string> subsections_;
203
205 std::map<std::string, std::string> subsections_TOPP_;
206
207
220 Param parseCommandLine_(const int argc, const char** argv, const std::string& misc = "misc", const std::string& unknown = "unknown");
221
231 std::string getParamAsString_(const std::string& key, const std::string& default_value = "") const;
232
238 Int getParamAsInt_(const std::string& key, Int default_value = 0) const;
239
245 double getParamAsDouble_(const std::string& key, double default_value = 0) const;
246
252 StringList getParamAsStringList_(const std::string& key, const StringList& default_value) const;
253
259 IntList getParamAsIntList_(const std::string& key, const IntList& default_value) const;
260
266 DoubleList getParamAsDoubleList_(const std::string& key, const DoubleList& default_value) const;
267
277 bool getParamAsBool_(const std::string& key) const;
278
290 const ParamValue& getParam_(const std::string& key) const;
291
297 std::string getSubsection_(const std::string& name) const;
298
301
303 Param getToolUserDefaults_(const std::string& tool_name) const;
305
306protected:
308 std::string version_;
309
311 std::string verboseVersion_;
312
315
317 std::vector<Citation> citations_;
318
321
329 const std::string& getIniLocation_() const
330 {
331 return ini_location_;
332 }
333
335 const std::string& toolName_() const;
336
357 virtual void registerOptionsAndFlags_() = 0;
358
360 std::string getParamArgument_(const Param::ParamEntry& entry) const;
361
363 std::vector<ParameterInformation> paramToParameterInformation_(const Param& param) const;
364
374 ParameterInformation paramEntryToParameterInformation_(const Param::ParamEntry& entry, const std::string& argument = "", const std::string& full_name = "") const;
375
377
379 void registerFullParam_(const Param& param);
380
391 void registerStringOption_(const std::string& name, const std::string& argument, const std::string& default_value, const std::string& description, bool required = true, bool advanced = false);
392
399 void setValidStrings_(const std::string& name, const std::vector<std::string>& strings);
400
410 void setValidStrings_(const std::string& name, const std::string vstrings[], int count);
411
429 void registerInputFile_(const std::string& name, const std::string& argument, const std::string& default_value, const std::string& description, bool required = true, bool advanced = false, const StringList& tags = StringList());
430
444 void registerOutputFile_(const std::string& name, const std::string& argument, const std::string& default_value, const std::string& description, bool required = true, bool advanced = false);
445
466 void registerOutputPrefix_(const std::string& name, const std::string& argument, const std::string& default_value, const std::string& description, bool required = true, bool advanced = false);
467
480 void registerOutputDir_(const std::string& name, const std::string& argument, const std::string& default_value, const std::string& description, bool required = true, bool advanced = false);
481
482
495 void setValidFormats_(const std::string& name, const std::vector<std::string>& formats, const bool force_OpenMS_format = true);
496
497
508 void registerDoubleOption_(const std::string& name, const std::string& argument, double default_value, const std::string& description, bool required = true, bool advanced = false);
509
515 void setMinInt_(const std::string& name, Int min);
521 void setMaxInt_(const std::string& name, Int max);
527 void setMinFloat_(const std::string& name, double min);
533 void setMaxFloat_(const std::string& name, double max);
534
545 void registerIntOption_(const std::string& name, const std::string& argument,
546 Int default_value, const std::string& description,
547 bool required = true, bool advanced = false);
548
560 void registerIntList_(const std::string& name, const std::string& argument, const IntList& default_value, const std::string& description, bool required = true, bool advanced = false);
561
572 void registerDoubleList_(const std::string& name, const std::string& argument, const DoubleList& default_value, const std::string& description, bool required = true, bool advanced = false);
573
584 void registerStringList_(const std::string& name, const std::string& argument, const StringList& default_value, const std::string& description, bool required = true, bool advanced = false);
585
602 void registerInputFileList_(const std::string& name, const std::string& argument, const StringList& default_value, const std::string& description, bool required = true, bool advanced = false, const StringList& tags = StringList());
603
617 void registerOutputFileList_(const std::string& name, const std::string& argument, const StringList& default_value, const std::string& description, bool required = true, bool advanced = false);
618
620 void registerFlag_(const std::string& name, const std::string& description, bool advanced = false);
621
629 void registerSubsection_(const std::string& name, const std::string& description);
630
640 void registerTOPPSubsection_(const std::string& name, const std::string& description);
641
642
645
646
655 std::string getStringOption_(const std::string& name) const;
656
665 std::string getOutputDirOption(const std::string& name) const;
666
675 double getDoubleOption_(const std::string& name) const;
676
685 Int getIntOption_(const std::string& name) const;
686
695 StringList getStringList_(const std::string& name) const;
696
705 IntList getIntList_(const std::string& name) const;
706
715 DoubleList getDoubleList_(const std::string& name) const;
716
718 bool getFlag_(const std::string& name) const;
719
725 const ParameterInformation& findEntry_(const std::string& name) const;
726
732 Param const& getParam_() const;
733
747 void checkParam_(const Param& param, const std::string& filename, const std::string& location) const;
748
759 void fileParamValidityCheck_(const StringList& param_value, const std::string& param_name, const ParameterInformation& p) const;
760
776 void fileParamValidityCheck_(std::string& param_value, const std::string& param_name, const ParameterInformation& p) const;
777
787
790
792 virtual ExitCodes main_(int argc, const char** argv) = 0;
793
795
796
797 void writeLogInfo_(const std::string& text) const;
798
800 void writeLogWarn_(const std::string& text) const;
801
803 void writeLogError_(const std::string& text) const;
804
806 void writeDebug_(const std::string& text, UInt min_level) const;
807
809 void writeDebug_(const std::string& text, const Param& param, UInt min_level) const;
811
812 // NOTE: runExternalProcess_() moved to the TOPPExternalToolBase subclass
813 // (APPLICATIONS/TOPPExternalToolBase.h); tools that shell out should derive from it.
814
841 void inputFileReadable_(const std::string& filename, const std::string& param_name) const;
842
853 void outputFileWritable_(const std::string& filename, const std::string& param_name) const;
855
863 bool parseRange_(const std::string& text, double& low, double& high) const;
864
872 bool parseRange_(const std::string& text, Int& low, Int& high) const;
873
876
878
879
881 void addDataProcessing_(ConsensusMap& map, const DataProcessing& dp) const;
882
884 void addDataProcessing_(FeatureMap& map, const DataProcessing& dp) const;
885
887 void addDataProcessing_(PeakMap& map, const DataProcessing& dp) const;
888
891
893 DataProcessing getProcessingInfo_(const std::set<DataProcessing::ProcessingAction>& actions) const;
894
896
909
911 static std::string topp_ini_file_;
912
915private:
916
922 void addText_(const std::string& text);
923
931 ParameterInformation& getParameterByName_(const std::string& name);
932
940 std::optional<ExitCodes> handleWriteCommands_();
941
942 };
943
944} // namespace OpenMS
945
const char * tool_name
Definition TOPPAS.cpp:68
A container for consensus elements.
Definition ConsensusMap.h:67
Description of the applied preprocessing steps.
Definition DataProcessing.h:28
ProcessingAction
Definition DataProcessing.h:34
A container for features.
Definition FeatureMap.h:78
In-Memory representation of a mass spectrometry run.
Definition MSExperiment.h:49
Class to hold strings, numeric values, vectors of strings and vectors of numeric values using the stl...
Definition ParamValue.h:31
Management and storage of parameters / INI files.
Definition Param.h:46
LogType
Possible log types.
Definition ProgressLogger.h:43
Base class for TOPP applications.
Definition TOPPBase.h:54
std::string getStringOption_(const std::string &name) const
Returns the value of a previously registered string option (use getOutputDirOption() for output direc...
void setValidFormats_(const std::string &name, const std::vector< std::string > &formats, const bool force_OpenMS_format=true)
Sets the formats for a input/output file option or for all members of an input/output file lists.
Param param_inifile_
All parameters specified in the ini file.
Definition TOPPBase.h:150
void registerInputFileList_(const std::string &name, const std::string &argument, const StringList &default_value, const std::string &description, bool required=true, bool advanced=false, const StringList &tags=StringList())
Registers a list of input files option.
void setValidStrings_(const std::string &name, const std::string vstrings[], int count)
Sets the valid strings for a string option or a whole string list.
Param const & getParam_() const
Return all parameters relevant to this TOPP tool.
bool getFlag_(const std::string &name) const
Returns the value of a previously registered flag.
void addEmptyLine_()
Adds an empty line between registered variables in the documentation.
std::vector< ParameterInformation > paramToParameterInformation_(const Param &param) const
Translates the given parameter object into a vector of ParameterInformation, that can be utilized for...
std::string getToolPrefix() const
Returns the prefix used to identify the tool.
const ParamValue & getParam_(const std::string &key) const
Return the value key of parameters as DataValue. ParamValue::EMPTY indicates that a parameter was not...
bool getParamAsBool_(const std::string &key) const
Return the value of flag parameter key as bool.
void enableLogging_() const
Ensures that at least some default logging destination is opened for writing in append mode.
Param parseCommandLine_(const int argc, const char **argv, const std::string &misc="misc", const std::string &unknown="unknown")
Parses command line arguments using parameter definitions from TOPPBase.
bool toolhandler_test_
Enable the ToolHandler tests.
Definition TOPPBase.h:320
Param param_
All parameters relevant to this invocation of the program.
Definition TOPPBase.h:147
void setValidStrings_(const std::string &name, const std::vector< std::string > &strings)
Sets the valid strings for a string option or a whole string list.
std::string const tool_description_
Tool description. This is assigned once and for all in the constructor.
Definition TOPPBase.h:138
double getDoubleOption_(const std::string &name) const
Returns the value of a previously registered double option.
std::vector< ParameterInformation > parameters_
Storage location for parameter information.
Definition TOPPBase.h:179
std::map< std::string, std::string > subsections_
Storage location and description for allowed subsections.
Definition TOPPBase.h:202
void registerOutputDir_(const std::string &name, const std::string &argument, const std::string &default_value, const std::string &description, bool required=true, bool advanced=false)
Registers an output directory used for tools with multiple output files which are not an output file ...
void registerSubsection_(const std::string &name, const std::string &description)
Registers an allowed subsection in the INI file (usually from OpenMS algorithms).
virtual ~TOPPBase()
Destructor.
void writeLogInfo_(const std::string &text) const
Writes a string to the log file and to OPENMS_LOG_INFO.
void printUsage_()
Prints the tool-specific command line options and appends the common options.
void registerStringOption_(const std::string &name, const std::string &argument, const std::string &default_value, const std::string &description, bool required=true, bool advanced=false)
Registers a string option.
void setMaxFloat_(const std::string &name, double max)
Sets the maximum value for the floating point parameter(can be a list of floating points,...
Int getIntOption_(const std::string &name) const
Returns the value of a previously registered integer option.
void registerTOPPSubsection_(const std::string &name, const std::string &description)
Registers an allowed subsection in the INI file originating from the TOPP tool itself.
void addDataProcessing_(FeatureMap &map, const DataProcessing &dp) const
Data processing setter for feature maps.
Param param_instance_
Parameters from instance section.
Definition TOPPBase.h:156
Int const instance_number_
Instance number.
Definition TOPPBase.h:141
std::vector< Citation > citations_
Papers, specific for this tool (will be shown in '–help')
Definition TOPPBase.h:317
DataProcessing getProcessingInfo_(const std::set< DataProcessing::ProcessingAction > &actions) const
Returns the data processing information.
ProgressLogger::LogType log_type_
Type of progress logging.
Definition TOPPBase.h:875
void addText_(const std::string &text)
void checkParam_(const Param &param, const std::string &filename, const std::string &location) const
Checks top-level entries of param according to the information during registration.
std::string version_
Version string (if empty, the OpenMS/TOPP version is printed)
Definition TOPPBase.h:308
std::string getOutputDirOption(const std::string &name) const
Returns the value of a previously registered output_dir option.
void registerStringList_(const std::string &name, const std::string &argument, const StringList &default_value, const std::string &description, bool required=true, bool advanced=false)
Registers a list of strings option.
ParameterInformation & getParameterByName_(const std::string &name)
Returns the parameter identified by the given name.
TOPPBase(const std::string &name, const std::string &description, bool official=true, const std::vector< Citation > &citations={}, bool toolhandler_test=true)
Constructor.
bool test_mode_
Test mode.
Definition TOPPBase.h:908
ExitCodes main(int argc, const char **argv)
Main routine of all TOPP applications.
void addDataProcessing_(PeakMap &map, const DataProcessing &dp) const
Data processing setter for peak maps.
static std::string topp_ini_file_
.TOPP.ini file for storing system default parameters
Definition TOPPBase.h:911
void registerIntOption_(const std::string &name, const std::string &argument, Int default_value, const std::string &description, bool required=true, bool advanced=false)
Registers an integer option.
TOPPBase()=delete
No default constructor.
StringList getStringList_(const std::string &name) const
Returns the value of a previously registered StringList.
std::string getParamAsString_(const std::string &key, const std::string &default_value="") const
Return the value of parameter key as a string or default_value if this value is not set.
void setMinInt_(const std::string &name, Int min)
Sets the minimum value for the integer parameter(can be a list of integers,too) name.
void inputFileReadable_(const std::string &filename, const std::string &param_name) const
Checks if an input file exists, is readable and is not empty.
virtual void registerOptionsAndFlags_()=0
Sets the valid command line options (with argument) and flags (without argument).
static const Citation cite_openms
The latest and greatest OpenMS citation.
Definition TOPPBase.h:131
const ParameterInformation & findEntry_(const std::string &name) const
Finds the entry in the parameters_ array that has the name name.
std::unique_ptr< std::ofstream > log_
Definition TOPPBase.h:166
DataProcessing getProcessingInfo_(DataProcessing::ProcessingAction action) const
Returns the data processing information.
Param param_common_tool_
Parameters from common section with tool name.
Definition TOPPBase.h:159
DoubleList getParamAsDoubleList_(const std::string &key, const DoubleList &default_value) const
Return the value of parameter key as a DoubleList or default_value if this value is not set.
void registerDoubleList_(const std::string &name, const std::string &argument, const DoubleList &default_value, const std::string &description, bool required=true, bool advanced=false)
Registers a list of doubles option.
void writeDebug_(const std::string &text, UInt min_level) const
Writes a string to the log file and to OPENMS_LOG_DEBUG if the debug level is at least min_level.
Int debug_level_
Debug level set by -debug.
Definition TOPPBase.h:914
void writeDebug_(const std::string &text, const Param &param, UInt min_level) const
Writes a std::string followed by a Param to the log file and to OPENMS_LOG_DEBUG if the debug level i...
TOPPBase(const TOPPBase &)=delete
No default copy constructor.
bool official_
Flag indicating if this an official TOPP tool.
Definition TOPPBase.h:314
Param getDefaultParameters_() const
Returns the default parameters.
void registerOutputFile_(const std::string &name, const std::string &argument, const std::string &default_value, const std::string &description, bool required=true, bool advanced=false)
Registers an output file option.
void registerInputFile_(const std::string &name, const std::string &argument, const std::string &default_value, const std::string &description, bool required=true, bool advanced=false, const StringList &tags=StringList())
Registers an input file option.
Param param_cmdline_
Parameters from command line.
Definition TOPPBase.h:153
const std::string & getIniLocation_() const
Returns the location of the ini file where parameters are taken from. E.g. if the command line was TO...
Definition TOPPBase.h:329
void registerOutputPrefix_(const std::string &name, const std::string &argument, const std::string &default_value, const std::string &description, bool required=true, bool advanced=false)
Registers an output file prefix used for tools with multiple file output.
double getParamAsDouble_(const std::string &key, double default_value=0) const
Return the value of parameter key as a double or default_value if this value is not set.
void registerFlag_(const std::string &name, const std::string &description, bool advanced=false)
Registers a flag.
DoubleList getDoubleList_(const std::string &name) const
Returns the value of a previously registered DoubleList.
std::string const ini_location_
Location in the ini file where to look for parameters.
Definition TOPPBase.h:144
std::string getSubsection_(const std::string &name) const
Get the part of a parameter name that makes up the subsection.
const std::string & toolName_() const
Returns the tool name.
void setMaxInt_(const std::string &name, Int max)
Sets the maximum value for the integer parameter(can be a list of integers,too) name.
static void setMaxNumberOfThreads(int num_threads)
Sets the maximal number of usable threads.
void writeLogWarn_(const std::string &text) const
Writes a string to the log file and to OPENMS_LOG_WARN.
void outputFileWritable_(const std::string &filename, const std::string &param_name) const
Checks if an output file is writable.
IntList getIntList_(const std::string &name) const
Returns the value of a previously registered IntList.
void fileParamValidityCheck_(std::string &param_value, const std::string &param_name, const ParameterInformation &p) const
checks if an input file exists (respecting the flags)
void registerParamSubsectionsAsTOPPSubsections_(const Param &param)
std::map< std::string, std::string > subsections_TOPP_
Storage location and description for allowed subsections from TOPP tool's command-line parameters.
Definition TOPPBase.h:205
ExitCodes
Exit codes.
Definition TOPPBase.h:65
@ INPUT_FILE_EMPTY
Definition TOPPBase.h:70
@ INPUT_FILE_CORRUPT
Definition TOPPBase.h:69
@ ILLEGAL_PARAMETERS
Definition TOPPBase.h:72
@ MISSING_PARAMETERS
Definition TOPPBase.h:73
@ EXTERNAL_PROGRAM_ERROR
Definition TOPPBase.h:75
@ INCOMPATIBLE_INPUT_DATA
Definition TOPPBase.h:77
@ UNKNOWN_ERROR
Definition TOPPBase.h:74
@ EXECUTION_OK
Definition TOPPBase.h:66
@ INTERNAL_ERROR
Definition TOPPBase.h:78
@ INPUT_FILE_NOT_FOUND
Definition TOPPBase.h:67
@ INPUT_FILE_NOT_READABLE
Definition TOPPBase.h:68
@ CANNOT_WRITE_OUTPUT_FILE
Definition TOPPBase.h:71
@ PARSE_ERROR
Definition TOPPBase.h:76
@ UNEXPECTED_RESULT
Definition TOPPBase.h:79
virtual ExitCodes main_(int argc, const char **argv)=0
The actual "main" method. main_() is invoked by main().
bool parseRange_(const std::string &text, Int &low, Int &high) const
Parses a range string ([a]:[b]) into two variables (integers)
void registerIntList_(const std::string &name, const std::string &argument, const IntList &default_value, const std::string &description, bool required=true, bool advanced=false)
Registers a list of integers option.
void writeLogError_(const std::string &text) const
Writes a string to the log file and to OPENMS_LOG_ERROR.
bool parseRange_(const std::string &text, double &low, double &high) const
Parses a range string ([a]:[b]) into two variables (doubles)
Int getParamAsInt_(const std::string &key, Int default_value=0) const
Return the value of parameter key as an integer or default_value if this value is not set.
void registerDoubleOption_(const std::string &name, const std::string &argument, double default_value, const std::string &description, bool required=true, bool advanced=false)
Registers a double option.
void checkIfIniParametersAreApplicable_(const Param &ini_params)
Checks if the parameters of the provided ini file are applicable to this tool.
void setMinFloat_(const std::string &name, double min)
Sets the minimum value for the floating point parameter(can be a list of floating points,...
Param getToolUserDefaults_(const std::string &tool_name) const
Returns the user defaults for the given tool, if any default parameters are stored in the users home.
virtual Param getSubsectionDefaults_(const std::string &section) const
This method should return the default parameters for subsections.
void fileParamValidityCheck_(const StringList &param_value, const std::string &param_name, const ParameterInformation &p) const
checks if files of an input file list exist
void addDataProcessing_(ConsensusMap &map, const DataProcessing &dp) const
Data processing setter for consensus maps.
Param getSubsectionDefaults_() const
Returns a single Param object containing all subsection parameters.
std::string getParamArgument_(const Param::ParamEntry &entry) const
Utility function that determines a suitable argument value for the given Param::ParamEntry.
void registerOutputFileList_(const std::string &name, const std::string &argument, const StringList &default_value, const std::string &description, bool required=true, bool advanced=false)
Registers a list of output files option.
std::string verboseVersion_
Version string including additional revision/date time information. Note: This differs from version_ ...
Definition TOPPBase.h:311
std::optional< ExitCodes > handleWriteCommands_()
Handles the '-write_ini/-write_ctd/-write_(nested_)cwl/-write_(nested_)json' command-line options.
IntList getParamAsIntList_(const std::string &key, const IntList &default_value) const
Return the value of parameter key as a IntList or default_value if this value is not set.
void registerFullParam_(const Param &param)
Register command line parameters for all entries in a Param object.
std::string const tool_name_
Tool name. This is assigned once and for all in the constructor.
Definition TOPPBase.h:135
std::string getDocumentationURL() const
Returns a link to the documentation of the tool (accessible on our servers and only after inclusion i...
Param param_common_
Parameters from common section without tool name.
Definition TOPPBase.h:162
StringList getParamAsStringList_(const std::string &key, const StringList &default_value) const
Return the value of parameter key as a StringList or default_value if this value is not set.
ParameterInformation paramEntryToParameterInformation_(const Param::ParamEntry &entry, const std::string &argument="", const std::string &full_name="") const
Transforms a ParamEntry object to command line parameter (ParameterInformation).
int Int
Signed integer type.
Definition Types.h:72
unsigned int UInt
Unsigned integer type.
Definition Types.h:64
std::vector< Int > IntList
Vector of signed integers.
Definition TypeAliases.h:24
std::vector< double > DoubleList
Vector of double precision real types.
Definition TypeAliases.h:31
std::vector< std::string > StringList
Vector of String.
Definition TypeAliases.h:39
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
Stores Citations for individual TOPP tools.
Definition TOPPBase_defs.h:35
Parameter entry used to store the actual information inside of a Param entry.
Definition Param.h:51
Struct that captures all information of a command line parameter.
Definition ParameterInformation.h:22