Skip to content

Commit

Permalink
fmt & bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pmarks committed Feb 19, 2021
1 parent 370ffe5 commit de23b57
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vartrix"
version = "1.1.18"
version = "1.1.19"
authors = ["Ian Fiddes <[email protected]>", "Patrick Marks <[email protected]>"]
edition = "2018"

Expand Down
6 changes: 5 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,11 @@ pub fn evaluate_alns(
// perform Smith-Waterman against both haplotypes
// and report the scores

bam.fetch((haps.locus.chrom.as_bytes(), haps.locus.start, haps.locus.end))?;
bam.fetch((
haps.locus.chrom.as_bytes(),
haps.locus.start,
haps.locus.end,
))?;

debug!("Evaluating record {}", locus_str);
for _rec in bam.records() {
Expand Down

0 comments on commit de23b57

Please sign in to comment.