| 8 | using namespace std; |
| 9 | |
| 10 | Int 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 |