We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8686a5 commit c75a075Copy full SHA for c75a075
assembler/src/common/modules/path_extend/pipeline/launcher.cpp
@@ -855,8 +855,9 @@ void PathExtendLauncher::Launch() {
855
size_t curr_path_number = 0;
856
size_t curr_scaffolding_iter = 1;
857
while (prev_path_number != curr_path_number and curr_scaffolding_iter < max_scaffolding_iterations) {
858
- INFO("Starting scaffolding iteration " << curr_scaffolding_iter << " for " << prev_path_number << " paths");
+ INFO("Starting scaffolding iteration " << curr_scaffolding_iter << " for " << polished_paths.size() << " paths");
859
ScaffoldPaths(polished_paths);
860
+ polished_paths.FilterEmptyPaths();
861
curr_path_number = polished_paths.size();
862
++curr_scaffolding_iter;
863
}
0 commit comments