Skip to content

Commit

Permalink
fix: adjust error message
Browse files Browse the repository at this point in the history
  • Loading branch information
rneher committed Sep 8, 2023
1 parent 6eee1d4 commit e4c995d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages_rs/nextclade/src/tree/tree_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ pub fn finetune_nearest_node(
})?;
private_mutations = union_of_muts(&private_mutations, &best_split_result.left.invert()).wrap_err_with(|| {
format!(
"When calculating union of mutations between query sequence and the candidate child node '{}'",
"When calculating union of mutations between query sequence the zero-length parent node '{}'",
graph.get_node(best_node.key()).expect("Node not found").payload().name
)
})?;
Expand Down

0 comments on commit e4c995d

Please sign in to comment.