| 394 | } |
| 395 | |
| 396 | void ProteinIdentification::setPrimaryMSRunPath(const StringList& s, bool raw) |
| 397 | { |
| 398 | String meta_name = raw ? "spectra_data_raw" : "spectra_data"; |
| 399 | setMetaValue(meta_name, DataValue(StringList())); |
| 400 | if (s.empty()) |
| 401 | { |
| 402 | OPENMS_LOG_WARN << "Setting an empty value for primary MS runs paths." << std::endl; |
| 403 | } |
| 404 | else |
| 405 | { |
| 406 | addPrimaryMSRunPath(s, raw); |
| 407 | } |
| 408 | } |
| 409 | |
| 410 | void ProteinIdentification::setPrimaryMSRunPath(const StringList& s, MSExperiment& e) |
| 411 | { |
nothing calls this directly
no test coverage detected