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

Method getFileNames

src/openms_gui/source/VISUAL/TOPPASVertex.cpp:331–344  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

329 }
330
331 QStringList TOPPASVertex::getFileNames(int param_index, int round) const
332 {
333 if ((Size)round >= output_files_.size())
334 {
335 throw Exception::IndexOverflow(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION, round, output_files_.size());
336 }
337 RoundPackage rp = output_files_[round];
338 if (rp.find(param_index) == rp.end())
339 {
340 throw Exception::IndexOverflow(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION, param_index, rp.size()); // index could be larger (its a map, but nevertheless)
341 }
342 //String s = String(rp[param_index].filenames.join("\" \""));
343 return rp[param_index].filenames.get();
344 }
345
346 QStringList TOPPASVertex::getFileNames() const
347 {

Callers 6

foreachFunction · 0.80
createResourcesMethod · 0.80
getListToolStatus_Method · 0.80
buildRoundPackagesMethod · 0.80
renameOutput_Method · 0.80
createDirsMethod · 0.80

Calls 6

sizeMethod · 0.45
findMethod · 0.45
endMethod · 0.45
getMethod · 0.45
beginMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected