Skip to content

Commit

Permalink
Fix call to map_read
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Lonsdale authored and Andrew Lonsdale committed Dec 15, 2021
1 parent d4e2726 commit 9d21ec6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pseudoaligner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -550,9 +550,9 @@ pub fn match_read<K: Kmer + Sync + Send>(optional: Option<(Vec<u32>, usize, usiz
}
// trim these also? to be consistent, yes, indicates different
None => {
debug!("orig {:?}",index.map_read(&DnaString::from_dna_string(&seq)),mismatchsize);
debug!(" trimsize... {:?}",index.map_read(&DnaString::from_dna_string(&seq[trimsize..])),mismatchsize);
debug!(" ...trim_end {:?}",index.map_read(&DnaString::from_dna_string(&seq[..trim_end])),mismatchsize);
debug!("orig {:?}",index.map_read(&DnaString::from_dna_string(&seq),mismatchsize));
debug!(" trimsize... {:?}",index.map_read(&DnaString::from_dna_string(&seq[trimsize..]),mismatchsize));
debug!(" ...trim_end {:?}",index.map_read(&DnaString::from_dna_string(&seq[..trim_end]),mismatchsize));
debug!("coded trim {:?}",trim_read_data);
debug!(" {} none trimed {:?} returns None", record_id.to_owned(),eq_class);
debug!("orig {:?} trimmed {:?}",&DnaString::from_dna_string(&seq),&DnaString::from_dna_string(&seq[trimsize..trim_end]));
Expand Down

0 comments on commit 9d21ec6

Please sign in to comment.