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

Method load

src/openms/source/FORMAT/FASTAFile.cpp:203–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

201 }
202
203 void FASTAFile::load(const String &filename, vector<FASTAEntry> &data) const
204 {
205 startProgress(0, 1, "Loading FASTA file");
206 data.clear();
207 FASTAEntry p;
208 FASTAFile f;
209 f.readStart(filename);
210 while (f.readNext(p))
211 {
212 data.push_back(std::move(p));
213 }
214 endProgress();
215 }
216
217 void FASTAFile::writeStart(const String &filename)
218 {

Callers 1

testAASequenceTutorialFunction · 0.95

Calls 4

readStartMethod · 0.80
readNextMethod · 0.80
clearMethod · 0.45
push_backMethod · 0.45

Tested by 1

testAASequenceTutorialFunction · 0.76