| 107 | } |
| 108 | |
| 109 | void storeFeatureXMLs_(vector<FeatureMap>& feature_maps, const StringList& out_files, FeatureXMLFile& fxml_file) |
| 110 | { |
| 111 | ProgressLogger progresslogger; |
| 112 | progresslogger.setLogType(TOPPMapAlignerBase::log_type_); |
| 113 | progresslogger.startProgress(0, feature_maps.size(), "writing output files"); |
| 114 | for (Size i = 0; i < out_files.size(); ++i) |
| 115 | { |
| 116 | progresslogger.setProgress(i); |
| 117 | // annotate output with data processing info |
| 118 | addDataProcessing_(feature_maps[i], getProcessingInfo_(DataProcessing::ALIGNMENT)); |
| 119 | fxml_file.store(out_files[i], feature_maps[i]); |
| 120 | } |
| 121 | progresslogger.endProgress(); |
| 122 | } |
| 123 | |
| 124 | void storeTransformationDescriptions_(const vector<TransformationDescription>& transformations, StringList& trafos) |
| 125 | { |
nothing calls this directly
no test coverage detected