User Quickstart Guide#

Read the User Quickstart guide to gain a brief understanding of key concepts and how to use the tools. For more in-depth information, consult OpenMS API Reference.

What is OpenMS#

OpenMS is a free, open-source C++ library with Python bindings. It is commonly used for liquid chromatography-mass spectrometry (LC-MS) data management and analyses. OpenMS provides an infrastructure for the rapid development of mass spectrometry related software as well as a rich toolset built on top of it. OpenMS is available under the three clause BSD licence and runs under Windows, macOS, and Linux operating systems.

Background#

Before using OpenMS, become familiar with the following terms:

Tool and Utilities

Description

TOPPView

A tool that is used to view and explore LC-MS data, alignments, groups, peptide identifications, and more.

TOPPAS

A graphical workflow design tool that is used to create pipelines from all TOPP tools (and UTILS).

TOPP tools

A set of command line tools. Each of these command line tools is a building block of an analysis pipeline and are chained together in a way that fits the requirements of the user. The TOPP tools are accessible from a command prompt/shell or via TOPPAS.

UTILS

Besides TOPP, OpenMS offers range of other tools. They are not included in TOPP as they are not part of typical analysis pipelines. A set of command line utilities, similar to TOPP tools, mostly used during pipeline construction or parameter optimization.

Important

Users can now use KNIME in place of TOPPAS; the later will deprecated with no support in near future. Please find more information about using KNIME in KNIME tutorial.

How to run a Tool#

A good start are the example pipelines (select File > Open example file within TOPPAS).

Alternatively, use the command line and call tools directly. In this case, you’ll probably want to use some type of shell script for automation.

Adapt pipeline parameters#

The default parameters of each tool can usually be tweaked to fit the data and improve results.

Where do you change pipeline parameters?#

  1. TOPPAS: Double-click the node of which you want to change the parameters of. A short docu for each parameter will show up once it is selected. All parameters which would be available on the command line and in the INI file are shown here as well.

  2. Command line: Very basic parameters can be set on the command line, e.g. FileFilter -rt 1000:2000 .....

  3. Doing 2 for all parameters would create a very long list, thus, use so-called .ini files to provide full parameter sets to TOPP tools. If no INI file is given, default parameters are used. To get a default .ini use

    <tool> -write_ini <file>

    e.g. FileFilter -write_ini filefilter.ini

    Now, edit the INI file (which is a XML file) using the INIFileEditor, which is another GUI tool shipped with OpenMS and similar to the one build into TOPPAS.

How do I feed the INI file to a Tool?#

  1. TOPPAS: Once you changed the parameters of a node and clicked Ok, the parameters are in effect. Because they are part of the TOPPAS workflow, they are saved together with the workflow.

  2. Command line : Supply the INI file via the -ini flag, <tool> -ini <file>

    e.g. FileFilter -ini filefilter.ini

What parameters to set and to what value?#

The answer is complex, in general, read the tool description, change the parameters and compare the results using TOPPView if possible. If that does not help, contact us. Please include all the necessary details we need in order to help you.