Skip to content

Commit 4b4c1fd

Browse files
committed
cli/commands/quantify/match_intervals: Skip zero-length operations
1 parent b8f5786 commit 4b4c1fd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

atlas-cli/src/commands/quantify/match_intervals.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ impl<'r> Iterator for MatchIntervals<'r> {
3434

3535
let len = op.len();
3636

37-
assert!(len > 0);
37+
if len == 0 {
38+
continue;
39+
}
3840

3941
match op.kind() {
4042
Kind::Match | Kind::SequenceMatch | Kind::SequenceMismatch => {
@@ -71,6 +73,7 @@ mod tests {
7173
#[test]
7274
fn test_next() -> Result<(), Box<dyn std::error::Error>> {
7375
let mut ops = [
76+
Ok(Op::new(Kind::Match, 0)),
7477
Ok(Op::new(Kind::Match, 1)),
7578
Ok(Op::new(Kind::Insertion, 2)),
7679
Ok(Op::new(Kind::Deletion, 3)),

0 commit comments

Comments
 (0)