MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / storeFeatureXMLs_

Method storeFeatureXMLs_

src/topp/MapAlignerTreeGuided.cpp:109–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 7

addDataProcessing_Function · 0.85
setLogTypeMethod · 0.80
startProgressMethod · 0.45
sizeMethod · 0.45
setProgressMethod · 0.45
storeMethod · 0.45
endProgressMethod · 0.45

Tested by

no test coverage detected