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

Method getDataProcessingList

src/openms/source/METADATA/MSQuantifications.cpp:55–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53 }
54
55 const std::vector<DataProcessing> MSQuantifications::getDataProcessingList() const
56 {
57 std::vector<DataProcessing> list = data_processings_;
58
59 //This is one way street for dataprocessing - it probably wont get mapped back after write out and reading
60 for (std::vector<FeatureMap >::const_iterator fit = feature_maps_.begin(); fit != feature_maps_.end(); ++fit)
61 {
62 list.insert(list.end(), fit->getDataProcessing().begin(), fit->getDataProcessing().end());
63 }
64
65 for (std::vector<ConsensusMap>::const_iterator cit = consensus_maps_.begin(); cit != consensus_maps_.end(); ++cit)
66 {
67 list.insert(list.end(), cit->getDataProcessing().begin(), cit->getDataProcessing().end());
68 }
69
70 return list;
71 }
72
73 const std::vector<MSQuantifications::Assay> & MSQuantifications::getAssays() const
74 {

Callers 2

testMSQuantificationsFunction · 0.95
writeToMethod · 0.80

Calls 4

beginMethod · 0.45
endMethod · 0.45
insertMethod · 0.45
getDataProcessingMethod · 0.45

Tested by 1

testMSQuantificationsFunction · 0.76