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

Method handleQueryMetaInfo_

src/openms/source/FORMAT/OMSFileLoad.cpp:238–249  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

236
237
238 void OMSFileLoad::handleQueryMetaInfo_(SQLite::Statement& query,
239 MetaInfoInterface& info,
240 Key parent_id)
241 {
242 query.bind(":id", parent_id);
243 while (query.executeStep())
244 {
245 DataValue value = makeDataValue_(query);
246 info.setMetaValue(query.getColumn("name").getString(), value);
247 }
248 query.reset(); // get ready for new executeStep()
249 }
250
251
252 void OMSFileLoad::handleQueryAppliedProcessingStep_(

Callers

nothing calls this directly

Calls 3

getStringMethod · 0.80
setMetaValueMethod · 0.45
resetMethod · 0.45

Tested by

no test coverage detected