We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee0bfee commit 2b206d1Copy full SHA for 2b206d1
1 file changed
src/io/sam.rs
@@ -3598,16 +3598,17 @@ mod tests {
3598
}
3599
3600
fn spliced_gtag_transcript() -> Transcript {
3601
+ use cigar::op::{Kind, Op};
3602
Transcript {
3603
chr_idx: 0,
3604
genome_start: 0,
3605
genome_end: 200,
3606
is_reverse: false,
3607
exons: vec![],
3608
cigar: vec![
- CigarOp::Match(25),
3609
- CigarOp::RefSkip(100),
3610
+ Op::new(Kind::Match, 25),
+ Op::new(Kind::Skip, 100),
3611
3612
],
3613
score: 50,
3614
n_mismatch: 0,
0 commit comments