Skip to content

Commit

Permalink
Merge pull request #212 from ASLeonard/master
Browse files Browse the repository at this point in the history
Fix: use output of previous smoothing iteration as input for next
  • Loading branch information
AndreaGuarracino authored Nov 16, 2024
2 parents 66b17ae + b0e10b9 commit e93c623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ int main(int argc, char **argv) {
gfa_in_name = args::get(tmp_base) + '/' + filename + ".prep." + std::to_string(current_iter) + ".gfa";
}
std::cerr << smoothxg_iter << "::main] prepping graph for smoothing" << std::endl;
smoothxg::prep(args::get(gfa_in), gfa_in_name, node_chop,
smoothxg::prep(path_input_gfa, gfa_in_name, node_chop,
term_updates, true, temp_file::get_dir() + '/', n_threads,
smoothxg_iter);
} else {
Expand Down

0 comments on commit e93c623

Please sign in to comment.