MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / main

Function main

doc/code_examples/Tutorial_FeatureFinder.cpp:10–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8using namespace std;
9
10Int main()
11{
12 FeatureFinder ff;
13 // ... set parameters (e.g. from INI file)
14 Param parameters;
15 // ... set input data (e.g. from mzML file)
16 PeakMap input;
17 // ... set output data structure
18 FeatureMap output;
19 // ... set user-specified seeds, if needed
20 FeatureMap seeds;
21
22 ff.run("simple", input, output, parameters, seeds);
23
24 return 0;
25} //end of main

Callers

nothing calls this directly

Calls 1

runMethod · 0.45

Tested by

no test coverage detected