Skip to content

Commit

Permalink
A bit more tidying up.
Browse files Browse the repository at this point in the history
  • Loading branch information
macklin-10x committed Mar 29, 2024
1 parent 53a1a9f commit 276a5f0
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions vdj_ann/src/annotate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2091,13 +2091,10 @@ pub fn annotate_seq_core(
best_matches = max(best_matches, result.1);
}
if results[0].1 == best_matches {
let t = results[0].2;
let r = results[0].0 + results[0].1;
let m = results[0].4;
annx.push(PreAnnotation {
tig_start: m as i32,
match_len: r as i32,
ref_id: t as i32,
tig_start: results[0].4 as i32,
match_len: (results[0].0 + results[0].1) as i32,
ref_id: results[0].2 as i32,
ref_start: 0,
mismatches: results[0].5.clone(),
});
Expand Down

0 comments on commit 276a5f0

Please sign in to comment.