get the file path to the first MS runs
| 429 | |
| 430 | /// get the file path to the first MS runs |
| 431 | void ProteinIdentification::getPrimaryMSRunPath(StringList& output, bool raw) const |
| 432 | { |
| 433 | String meta_name = raw ? "spectra_data_raw" : "spectra_data"; |
| 434 | if (metaValueExists(meta_name)) |
| 435 | { |
| 436 | output = getMetaValue(meta_name); |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | void ProteinIdentification::addPrimaryMSRunPath(const StringList& s, bool raw) |
| 441 | { |
no outgoing calls
no test coverage detected