OpenMS  2.6.0
TOPPBase.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, Clemens Groepl $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
40 
43 
45 
47 
48 #include <fstream>
49 
50 class QStringList;
51 
52 namespace OpenMS
53 {
54  class FeatureMap;
55  class ConsensusMap;
56  struct ParameterInformation;
57 
70  struct Citation
71  {
72  std::string authors;
73  std::string title;
74  std::string when_where;
75  std::string doi;
76 
78  std::string toString() const
79  {
80  return authors + ". " + title + ". " + when_where + ". doi:" + doi + ".";
81  }
82  };
83 
84  namespace Exception
85  {
87  class OPENMS_DLLAPI UnregisteredParameter :
89  {
90 public:
91  UnregisteredParameter(const char* file, int line, const char* function, const String& parameter) :
92  BaseException(file, line, function, "UnregisteredParameter", parameter)
93  {
95  }
96 
97  };
99  class OPENMS_DLLAPI WrongParameterType :
101  {
102 public:
103  WrongParameterType(const char* file, int line, const char* function, const String& parameter) :
104  BaseException(file, line, function, "WrongParameterType", parameter)
105  {
107  }
108 
109  };
111  class OPENMS_DLLAPI RequiredParameterNotGiven :
113  {
114 public:
115  RequiredParameterNotGiven(const char* file, int line, const char* function, const String& parameter) :
116  BaseException(file, line, function, "RequiredParameterNotGiven", parameter)
117  {
119  }
120 
121  };
122  }
123 
144  class OPENMS_DLLAPI TOPPBase
145  {
146 public:
147 
150  {
164  UNEXPECTED_RESULT
165  };
166 
177  TOPPBase(const String& name, const String& description, bool official = true, const std::vector<Citation>& citations = {});
178 
180  virtual ~TOPPBase();
181 
183  ExitCodes main(int argc, const char** argv);
184 
192  static void setMaxNumberOfThreads(int num_threads);
193 
201  String getToolPrefix() const;
202 
203 private:
206 
209 
212 
215 
217  TOPPBase();
218 
220  TOPPBase(const TOPPBase&);
221 
224 
227 
230 
233 
236 
239 
241  mutable std::ofstream log_;
242 
251  void enableLogging_() const;
252 
254  std::vector<ParameterInformation> parameters_;
255 
265  virtual Param getSubsectionDefaults_(const String& section) const;
266 
274  Param getSubsectionDefaults_() const;
275 
277  std::map<String, String> subsections_;
278 
280  std::map<String, String> subsections_TOPP_;
281 
282 
295  Param parseCommandLine_(const int argc, const char** argv, const String& misc = "misc", const String& unknown = "unknown");
296 
306  String getParamAsString_(const String& key, const String& default_value = "") const;
307 
313  Int getParamAsInt_(const String& key, Int default_value = 0) const;
314 
320  double getParamAsDouble_(const String& key, double default_value = 0) const;
321 
327  StringList getParamAsStringList_(const String& key, const StringList& default_value) const;
328 
334  IntList getParamAsIntList_(const String& key, const IntList& default_value) const;
335 
341  DoubleList getParamAsDoubleList_(const String& key, const DoubleList& default_value) const;
342 
352  bool getParamAsBool_(const String& key) const;
353 
365  const DataValue& getParam_(const String& key) const;
366 
372  String getSubsection_(const String& name) const;
373 
374  String getDocumentationURL() const;
375 
377  Param getDefaultParameters_() const;
378 
380  Param getToolUserDefaults_(const String& tool_name) const;
382 
383 protected:
386 
389 
391  bool official_;
392 
394  std::vector<Citation> citations_;
395 
403  const String& getIniLocation_() const
404  {
405  return ini_location_;
406  }
407 
409  const String& toolName_() const;
410 
431  virtual void registerOptionsAndFlags_() = 0;
432 
434  String getParamArgument_(const Param::ParamEntry& entry) const;
435 
437  std::vector<ParameterInformation> paramToParameterInformation_(const Param& param) const;
438 
448  ParameterInformation paramEntryToParameterInformation_(const Param::ParamEntry& entry, const String& argument = "", const String& full_name = "") const;
449 
450  void registerParamSubsectionsAsTOPPSubsections_(const Param& param);
451 
453  void registerFullParam_(const Param& param);
454 
465  void registerStringOption_(const String& name, const String& argument, const String& default_value, const String& description, bool required = true, bool advanced = false);
466 
473  void setValidStrings_(const String& name, const std::vector<String>& strings);
474 
484  void setValidStrings_(const String& name, const std::string vstrings[], int count);
485 
503  void registerInputFile_(const String& name, const String& argument, const String& default_value, const String& description, bool required = true, bool advanced = false, const StringList& tags = StringList());
504 
518  void registerOutputFile_(const String& name, const String& argument, const String& default_value, const String& description, bool required = true, bool advanced = false);
519 
530  void setValidFormats_(const String& name, const std::vector<String>& formats, const bool force_OpenMS_format = true);
531 
532 
543  void registerDoubleOption_(const String& name, const String& argument, double default_value, const String& description, bool required = true, bool advanced = false);
544 
550  void setMinInt_(const String& name, Int min);
556  void setMaxInt_(const String& name, Int max);
562  void setMinFloat_(const String& name, double min);
568  void setMaxFloat_(const String& name, double max);
569 
580  void registerIntOption_(const String& name, const String& argument,
581  Int default_value, const String& description,
582  bool required = true, bool advanced = false);
583 
595  void registerIntList_(const String& name, const String& argument, IntList default_value, const String& description, bool required = true, bool advanced = false);
596 
607  void registerDoubleList_(const String& name, const String& argument, DoubleList default_value, const String& description, bool required = true, bool advanced = false);
608 
619  void registerStringList_(const String& name, const String& argument, StringList default_value, const String& description, bool required = true, bool advanced = false);
620 
637  void registerInputFileList_(const String& name, const String& argument, StringList default_value, const String& description, bool required = true, bool advanced = false, const StringList& tags = StringList());
638 
652  void registerOutputFileList_(const String& name, const String& argument, StringList default_value, const String& description, bool required = true, bool advanced = false);
653 
655  void registerFlag_(const String& name, const String& description, bool advanced = false);
656 
664  void registerSubsection_(const String& name, const String& description);
665 
675  void registerTOPPSubsection_(const String& name, const String& description);
676 
677 
679  void addEmptyLine_();
680 
681 
690  String getStringOption_(const String& name) const;
691 
700  double getDoubleOption_(const String& name) const;
701 
710  Int getIntOption_(const String& name) const;
711 
720  StringList getStringList_(const String& name) const;
721 
730  IntList getIntList_(const String& name) const;
731 
740  DoubleList getDoubleList_(const String& name) const;
741 
743  bool getFlag_(const String& name) const;
744 
750  const ParameterInformation& findEntry_(const String& name) const;
751 
757  Param const& getParam_() const;
758 
772  void checkParam_(const Param& param, const String& filename, const String& location) const;
773 
784  void fileParamValidityCheck_(const StringList& param_value, const String& param_name, const ParameterInformation& p) const;
785 
801  void fileParamValidityCheck_(String& param_value, const String& param_name, const ParameterInformation& p) const;
802 
810  void checkIfIniParametersAreApplicable_(const Param& ini_params);
812 
814  void printUsage_();
815 
817  virtual ExitCodes main_(int argc, const char** argv) = 0;
818 
820 
821  void writeLog_(const String& text) const;
823 
825  void writeDebug_(const String& text, UInt min_level) const;
826 
828  void writeDebug_(const String& text, const Param& param, UInt min_level) const;
830 
832 
833  ExitCodes runExternalProcess_(const QString& executable, const QStringList& arguments, const QString& workdir = "") const;
835 
838  ExitCodes runExternalProcess_(const QString& executable, const QStringList& arguments, String& proc_stdout, String& proc_stderr, const QString& workdir = "") const;
840 
867  void inputFileReadable_(const String& filename, const String& param_name) const;
868 
879  void outputFileWritable_(const String& filename, const String& param_name) const;
881 
889  bool parseRange_(const String& text, double& low, double& high) const;
890 
898  bool parseRange_(const String& text, Int& low, Int& high) const;
899 
902 
904 
905 
907  void addDataProcessing_(ConsensusMap& map, const DataProcessing& dp) const;
908 
910  void addDataProcessing_(FeatureMap& map, const DataProcessing& dp) const;
911 
913  void addDataProcessing_(PeakMap& map, const DataProcessing& dp) const;
914 
916  DataProcessing getProcessingInfo_(DataProcessing::ProcessingAction action) const;
917 
919  DataProcessing getProcessingInfo_(const std::set<DataProcessing::ProcessingAction>& actions) const;
920 
922 
924  bool writeCTD_();
925 
938 
941 
943  static const Citation cite_openms_;
944 
947 private:
948 
954  void addText_(const String& text);
955 
963  ParameterInformation& getParameterByName_(const String& name);
964 
965  };
966 
967 } // namespace OpenMS
968 
OpenMS::TOPPBase::debug_level_
Int debug_level_
Debug level set by -debug.
Definition: TOPPBase.h:946
OpenMS::TOPPBase::param_inifile_
Param param_inifile_
All parameters specified in the ini file.
Definition: TOPPBase.h:226
OpenMS::TOPPBase
Base class for TOPP applications.
Definition: TOPPBase.h:144
OpenMS::TOPPBase::subsections_TOPP_
std::map< String, String > subsections_TOPP_
Storage location and description for allowed subsections from TOPP tool's command-line parameters.
Definition: TOPPBase.h:280
OpenMS::TOPPBase::log_type_
ProgressLogger::LogType log_type_
Type of progress logging.
Definition: TOPPBase.h:901
OpenMS::TOPPBase::log_
std::ofstream log_
Log file stream. Use the writeLog_() and writeDebug_() methods to access it.
Definition: TOPPBase.h:241
OpenMS::TOPPBase::tool_name_
const String tool_name_
Tool name. This is assigned once and for all in the constructor.
Definition: TOPPBase.h:205
OpenMS::TOPPBase::ILLEGAL_PARAMETERS
Definition: TOPPBase.h:157
OpenMS::Param::ParamEntry
Parameter entry used to store the actual information inside of a Param entry.
Definition: Param.h:78
OpenMS::Citation::when_where
std::string when_where
suggested format: journal. year; volume, issue: pages
Definition: TOPPBase.h:74
OpenMS::TOPPBase::citations_
std::vector< Citation > citations_
Papers, specific for this tool (will be shown in '–help')
Definition: TOPPBase.h:394
OpenMS::TOPPBase::test_mode_
bool test_mode_
Test mode.
Definition: TOPPBase.h:937
OpenMS::TOPPBase::param_common_tool_
Param param_common_tool_
Parameters from common section with tool name.
Definition: TOPPBase.h:235
OpenMS::Citation::toString
std::string toString() const
mangle members to string
Definition: TOPPBase.h:78
OpenMS::TOPPBase::verboseVersion_
String verboseVersion_
Version string including additional revision/date time information. Note: This differs from version_ ...
Definition: TOPPBase.h:388
OpenMS::TOPPBase::param_instance_
Param param_instance_
Parameters from instance section.
Definition: TOPPBase.h:232
OpenMS::String
A more convenient string class.
Definition: String.h:59
OpenMS::DoubleList
std::vector< double > DoubleList
Vector of double precision real types.
Definition: ListUtils.h:62
OpenMS::MSExperiment
In-Memory representation of a mass spectrometry experiment.
Definition: MSExperiment.h:77
OpenMS::TOPPBase::INPUT_FILE_NOT_READABLE
Definition: TOPPBase.h:153
OpenMS::Exception::GlobalExceptionHandler::getInstance
static GlobalExceptionHandler & getInstance()
The accessor for the singleton. It also serves as a replacement for the constructor.
Definition: GlobalExceptionHandler.h:88
OpenMS::TOPPBase::topp_ini_file_
static String topp_ini_file_
.TOPP.ini file for storing system default parameters
Definition: TOPPBase.h:940
OpenMS::TOPPBase::EXTERNAL_PROGRAM_ERROR
Definition: TOPPBase.h:160
OpenMS::IntList
std::vector< Int > IntList
Vector of signed integers.
Definition: ListUtils.h:55
OpenMS::TOPPBase::INPUT_FILE_NOT_FOUND
Definition: TOPPBase.h:152
OpenMS::Citation::title
std::string title
title of article
Definition: TOPPBase.h:73
OpenMS::TOPPBase::tool_description_
const String tool_description_
Tool description. This is assigned once and for all in the constructor.
Definition: TOPPBase.h:208
OpenMS::Citation::authors
std::string authors
list of authors in AMA style, i.e. `<surname>` `<initials>`, ...
Definition: TOPPBase.h:72
OpenMS::Citation::doi
std::string doi
plain DOI (no urls), e.g. 10.1021/pr100177k
Definition: TOPPBase.h:75
OpenMS::TOPPBase::INPUT_FILE_EMPTY
Definition: TOPPBase.h:155
OpenMS::Exception::WrongParameterType
A parameter was accessed with the wrong type.
Definition: TOPPBase.h:99
OpenMS::TOPPBase::getIniLocation_
const 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:403
OpenMS
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
OpenMS::DataProcessing::ProcessingAction
ProcessingAction
Definition: DataProcessing.h:58
OpenMS::Exception::GlobalExceptionHandler::setMessage
static void setMessage(const std::string &message)
DataProcessing.h
Exception.h
OpenMS::DataValue
Class to hold strings, numeric values, lists of strings and lists of numeric values.
Definition: DataValue.h:56
ProgressLogger.h
int
OpenMS::Exception::UnregisteredParameter
An unregistered parameter was accessed.
Definition: TOPPBase.h:87
OpenMS::TOPPBase::official_
bool official_
Flag indicating if this an official TOPP tool.
Definition: TOPPBase.h:391
Param.h
OpenMS::TOPPBase::EXECUTION_OK
Definition: TOPPBase.h:151
OpenMS::Exception::UnregisteredParameter::UnregisteredParameter
UnregisteredParameter(const char *file, int line, const char *function, const String &parameter)
Definition: TOPPBase.h:91
OpenMS::Exception::BaseException
Exception base class.
Definition: Exception.h:89
OpenMS::TOPPBase::PARSE_ERROR
Definition: TOPPBase.h:161
OpenMS::TOPPBase::INCOMPATIBLE_INPUT_DATA
Definition: TOPPBase.h:162
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::UInt
unsigned int UInt
Unsigned integer type.
Definition: Types.h:94
OpenMS::ProgressLogger::LogType
LogType
Possible log types.
Definition: ProgressLogger.h:70
OpenMS::TOPPBase::param_
Param param_
All parameters relevant to this invocation of the program.
Definition: TOPPBase.h:223
main
int main(int argc, const char **argv)
Definition: INIFileEditor.cpp:73
OpenMS::TOPPBase::INTERNAL_ERROR
Definition: TOPPBase.h:163
OpenMS::Exception::RequiredParameterNotGiven
A required parameter was not given.
Definition: TOPPBase.h:111
OpenMS::FeatureMap
A container for features.
Definition: FeatureMap.h:97
OpenMS::ParameterInformation
Struct that captures all information of a command line parameter.
Definition: ParameterInformation.h:47
OpenMS::TOPPBase::ini_location_
const String ini_location_
Location in the ini file where to look for parameters.
Definition: TOPPBase.h:214
OpenMS::TOPPBase::cite_openms_
static const Citation cite_openms_
The OpenMS citation.
Definition: TOPPBase.h:943
OpenMS::Exception::RequiredParameterNotGiven::RequiredParameterNotGiven
RequiredParameterNotGiven(const char *file, int line, const char *function, const String &parameter)
Definition: TOPPBase.h:115
OpenMS::TOPPBase::UNKNOWN_ERROR
Definition: TOPPBase.h:159
OpenMS::DataProcessing
Description of the applied preprocessing steps.
Definition: DataProcessing.h:51
tool_name
const char * tool_name
Definition: SwathWizard.cpp:93
OpenMS::TOPPBase::ExitCodes
ExitCodes
Exit codes.
Definition: TOPPBase.h:149
String.h
OpenMS::Param
Management and storage of parameters / INI files.
Definition: Param.h:73
OpenMS::TOPPBase::parameters_
std::vector< ParameterInformation > parameters_
Storage location for parameter information.
Definition: TOPPBase.h:254
OpenMS::TOPPBase::param_common_
Param param_common_
Parameters from common section without tool name.
Definition: TOPPBase.h:238
OpenMS::TOPPBase::version_
String version_
Version string (if empty, the OpenMS/TOPP version is printed)
Definition: TOPPBase.h:385
OpenMS::TOPPBase::MISSING_PARAMETERS
Definition: TOPPBase.h:158
OpenMS::TOPPBase::instance_number_
const Int instance_number_
Instance number.
Definition: TOPPBase.h:211
OpenMS::TOPPBase::subsections_
std::map< String, String > subsections_
Storage location and description for allowed subsections.
Definition: TOPPBase.h:277
OpenMS::TOPPBase::INPUT_FILE_CORRUPT
Definition: TOPPBase.h:154
StandardTypes.h
GlobalExceptionHandler.h
OpenMS::TOPPBase::CANNOT_WRITE_OUTPUT_FILE
Definition: TOPPBase.h:156
OpenMS::Exception::WrongParameterType::WrongParameterType
WrongParameterType(const char *file, int line, const char *function, const String &parameter)
Definition: TOPPBase.h:103
OpenMS::TOPPBase::param_cmdline_
Param param_cmdline_
Parameters from command line.
Definition: TOPPBase.h:229