We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8f5786 commit 4b4c1fdCopy full SHA for 4b4c1fd
atlas-cli/src/commands/quantify/match_intervals.rs
@@ -34,7 +34,9 @@ impl<'r> Iterator for MatchIntervals<'r> {
34
35
let len = op.len();
36
37
- assert!(len > 0);
+ if len == 0 {
38
+ continue;
39
+ }
40
41
match op.kind() {
42
Kind::Match | Kind::SequenceMatch | Kind::SequenceMismatch => {
@@ -71,6 +73,7 @@ mod tests {
71
73
#[test]
72
74
fn test_next() -> Result<(), Box<dyn std::error::Error>> {
75
let mut ops = [
76
+ Ok(Op::new(Kind::Match, 0)),
77
Ok(Op::new(Kind::Match, 1)),
78
Ok(Op::new(Kind::Insertion, 2)),
79
Ok(Op::new(Kind::Deletion, 3)),
0 commit comments