OpenMS
GenericWrapper

Allows generically the wrapping of external tools.

pot. predecessor tools → GenericWrapper → pot. successor tools
any file the external tool can read any tool reading the output format
IDFileConverter (to produce pepXML) → GenericWrapper (type 'ProteinProphet') → IDFileConverter (protXML to idXML)
RAW file → GenericWrapper (type 'RAWFileConvert') →

any tool accepting mzML

This tool is a wrapper to call external (non-OpenMS) executables/scripts. Each supported tool is represented by a certain type. Each type exposes certain parameters which you can set (usually at least a in and out).

To obtain support for more external programs, visit the OpenMS website or (if you cannot find your tool there) ask on the OpenMS mailing list.

The following section is for experts only, who want to add their own external tool:

Each external tool is configured via a wrapper XML file in 'OpenMS/share/OpenMS/TOOLS/EXTERNAL'. All files have the ending .ttd (TOPP tool description). You can add one or more wrappers (i.e. types) per file, but we recommend one. The filename does not really matter, but it should be descriptive.

The ttd file has the following structure:

type

The name of the type which is added to list of valid GenericWrapper types. It should be unique, otherwise you get a fatal error.

category

Category for TOPPAS.

cloptions

Command line options (arguments) appended to the executable. This string might contain placeholders of the form "%<i>" where each placeholder will be substituted with a value that is determined in the mappings section (see below).

Example:

<cloptions>-o "%1" --mzML "%2"</cloptions>

path

Path (can be relative) to the executable that is executed.

mappings

Used to replace placeholders with input parameters. The mapping id corresponds to the placeholder in cloptions. The template used as starting string is given in cl. All tokens therein will be replaced and the result will be patched into the cloptions string. Allowed tokens are:

  • %TMP –> The current temp directory, fetched using File::getTempDirectory()
  • %DIR –> directory prefix, e.g.:, c:/tmp/mzfile.mzML gives 'c:/tmp'
  • %BASENAME[file] –> the basename of a file, e.g. c:/tmp/myfile.mzML gives 'myfile'
  • %RND –> generates a long random number, which can be used to generate unique directory or file names in a <file_pre> tag
  • %WORKINGDIR –> expands to the current working directory (default is '.'), settable by <workingdirectory> tag in the .ttd file.
  • %%<param> –> any param registered in the ini_param section, e.g. '%%in'

Example:

<mapping id="2" cl="-output_file %BASENAME[%%in].mgf -temp_dir %TMP -depth 3" />

ini_param

Contains part of a normal INI file with describes the parameters. Valid tags are those that are in the ParamXML scheme below 'NODE', e.g. 'ITEM'. Example:

<ITEM name="out" value="" type="string" description="output XML file containg regression line and confidence interval" tags="output file" />
<ITEM name="mz_tolerance" value="1" type="float" description="Tolerance in m/z dimension" />

The command line parameters of this tool are:

Warning: Unable to fetch subsection parameters! Addressing subsection parameters will not work for this tool (did you forget to specify '-type'?).

GenericWrapper -- Allows the generic wrapping of external tools.
Full documentation: http://www.openms.de/doxygen/release/3.1.0/html/TOPP_GenericWrapper.html
Version: 3.1.0 Oct 18 2023, 10:27:18, Revision: 17a07f8
To cite OpenMS:
 + Rost HL, Sachsenberg T, Aiche S, Bielow C et al.. OpenMS: a flexible open-source software platform for 
   mass spectrometry data analysis. Nat Meth. 2016; 13, 9: 741-748. doi:10.1038/nmeth.3959.

Usage:
  GenericWrapper <options>

This tool has algorithm parameters that are not shown here! Please check the ini file for a detailed descript
ion or use the --helphelp option

Options (mandatory options marked with '*'):
  -type *            Which external tool configuration to load?! See '/Users/builder/jenkins/ws/openms/RC/ope
                     nms_release_packaging/61568365/source/share/OpenMS/TOOLS/EXTERNAL'. (valid: 'hardklor', 
                     'MascotPercolator', 'RAWFileConvert', 'MSGFtoPercolator', 'Percolator', 'QCMLExport', 
                     'RAWDirConvert', 'Rscript_generic', 'Rscript_mzTab2tsv_PEP', 'Rscript_mzTab2tsv_PRT', 
                     'Rscript_mzTab2tsv_PSM', 'Rscript_qcfigures_acc', 'Rscript_qcfigures_idmap', 'Rscript_qc
                     figures_rt_acc', 'Rscript_qcfigures_setid', 'Rscript_qcfigures_tic', 'Rscript_qcfigures_
                     inj', 'TPP_RefreshParser', 'XTandemToPercolator', 'mail', 'TPP_ProteinProphet')
                     
Common UTIL options:
  -ini <file>        Use the given TOPP INI file
  -threads <n>       Sets the number of threads allowed to be used by the TOPP tool (default: '1')
  -write_ini <file>  Writes the default configuration file
  --help             Shows options
  --helphelp         Shows all options (including advanced)

The following configuration subsections are valid:
 - ETool   tool specific parameters

You can write an example INI file using the '-write_ini' option.
Documentation of subsection parameters can be found in the doxygen documentation or the INIFileEditor.
For more information, please consult the online documentation for this tool:
  - http://www.openms.de/doxygen/release/3.1.0/html/TOPP_GenericWrapper.html

INI file documentation of this tool: