| 94 | private: |
| 95 | template <typename MapType> |
| 96 | void loadInputMaps_(vector<MapType>& maps, StringList& ins, FeatureXMLFile& fxml_file) |
| 97 | { |
| 98 | ProgressLogger progresslogger; |
| 99 | progresslogger.setLogType(TOPPMapAlignerBase::log_type_); |
| 100 | progresslogger.startProgress(0, ins.size(), "loading input files"); |
| 101 | for (Size i = 0; i < ins.size(); ++i) |
| 102 | { |
| 103 | progresslogger.setProgress(i); |
| 104 | fxml_file.load(ins[i], maps[i]); |
| 105 | } |
| 106 | progresslogger.endProgress(); |
| 107 | } |
| 108 | |
| 109 | void storeFeatureXMLs_(vector<FeatureMap>& feature_maps, const StringList& out_files, FeatureXMLFile& fxml_file) |
| 110 | { |
nothing calls this directly
no test coverage detected