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

Method getChromatogramByNativeId

src/openms/source/KERNEL/OnDiscMSExperiment.cpp:65–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63 }
64
65 MSChromatogram OnDiscMSExperiment::getChromatogramByNativeId(const std::string& id)
66 {
67 if (!meta_ms_experiment_)
68 {
69 MSChromatogram chromatogram;
70 indexed_mzml_file_.getMSChromatogramByNativeId(id, chromatogram);
71 return chromatogram;
72 }
73
74 MSChromatogram chromatogram = getMetaChromatogramById_(id);
75 indexed_mzml_file_.getMSChromatogramByNativeId(id, chromatogram);
76 return chromatogram;
77 }
78
79 MSSpectrum OnDiscMSExperiment::getMetaSpectrumById_(const std::string& id)
80 {

Callers 1

Calls 1

Tested by

no test coverage detected