Skip to content

Commit 2b206d1

Browse files
committed
fix test
1 parent ee0bfee commit 2b206d1

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/io/sam.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3598,16 +3598,17 @@ mod tests {
35983598
}
35993599

36003600
fn spliced_gtag_transcript() -> Transcript {
3601+
use cigar::op::{Kind, Op};
36013602
Transcript {
36023603
chr_idx: 0,
36033604
genome_start: 0,
36043605
genome_end: 200,
36053606
is_reverse: false,
36063607
exons: vec![],
36073608
cigar: vec![
3608-
CigarOp::Match(25),
3609-
CigarOp::RefSkip(100),
3610-
CigarOp::Match(25),
3609+
Op::new(Kind::Match, 25),
3610+
Op::new(Kind::Skip, 100),
3611+
Op::new(Kind::Match, 25),
36113612
],
36123613
score: 50,
36133614
n_mismatch: 0,

0 commit comments

Comments
 (0)