Skip to content

Commit

Permalink
lints
Browse files Browse the repository at this point in the history
  • Loading branch information
tedil committed Nov 29, 2024
1 parent f895e46 commit 234bff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mapper/altseq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1093,7 +1093,7 @@ impl AltSeqToHgvsp {
is_init_met: bool,
is_frameshift: bool,
) -> Result<HgvsVariant, Error> {
assert!(start.is_some() == end.is_some());
assert_eq!(start.is_some(), end.is_some());

// If the `alternative` contains a stop codon (`*`/`X`) then we have to truncate
// after it.
Expand Down

0 comments on commit 234bff6

Please sign in to comment.