Skip to content

Commit

Permalink
Fix: use output of previous smoothing iteration as input for next
Browse files Browse the repository at this point in the history
  • Loading branch information
ASLeonard authored Nov 12, 2024
1 parent 66b17ae commit b0e10b9
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 b0e10b9

Please sign in to comment.