| 61 | } |
| 62 | |
| 63 | void SwathLibraryStats::updateFromFile(const QString& pqp_file) |
| 64 | { |
| 65 | TargetedExperiment te; |
| 66 | TransitionPQPFile tr_file; |
| 67 | tr_file.setLogType(ProgressLogger::GUI); |
| 68 | tr_file.convertPQPToTargetedExperiment(pqp_file.toStdString().c_str(), te, true); |
| 69 | //OpenSwath::LightTargetedExperiment transition_exp; |
| 70 | //OpenSwathDataAccessHelper::convertTargetedExp(te, transition_exp); |
| 71 | |
| 72 | update(te.getSummary()); |
| 73 | } |
| 74 | |
| 75 | } //namespace OpenMS |
| 76 |
nothing calls this directly
no test coverage detected