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. |
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. |
How to run a Tool#
In general TOPP tools are invoked via the command line, directly or indirectly (e.g. via worflow systems such as KNIME, Nextflow, snakemake, or TOPPAS).
Adapt pipeline parameters#
The default parameters of each tool can usually be tweaked to fit the data and improve results. Here, we describe how to work with TOPP tools on a command line (irrespective of the operating system) or using TOPPAS workflow system, which is shipped with OpenMS. For external workflow systems, please refer to their documentation.
Where do you change pipeline parameters?#
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.
Command line: Very basic parameters can be set on the command line, e.g.
FileFilter -rt 1000:2000 .....
Passing all parameters via commandline 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?#
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.
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.