Skip to content

Commit

Permalink
Update to v0.12.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ctsa committed Oct 16, 2024
1 parent e265533 commit 5f0b2b6
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## v0.12.6 - 2024-10-15

### Fixed

- Fix discover mode input path canonicalization (reversed flag logic)

## v0.12.5 - 2024-10-14

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawfish"
version = "0.12.5"
version = "0.12.6"
authors = ["Chris Saunders <[email protected]>"]
description = "Structural variant analysis for mapped PacBio HiFi reads"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion LICENSE-THIRDPARTY.json
Original file line number Diff line number Diff line change
Expand Up @@ -1576,7 +1576,7 @@
},
{
"name": "sawfish",
"version": "0.12.5",
"version": "0.12.6",
"authors": "Chris Saunders <[email protected]>",
"repository": null,
"license": null,
Expand Down
2 changes: 1 addition & 1 deletion src/cli/discover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ pub fn validate_and_fix_discovery_settings(
}

let mut settings = settings;
if settings.disable_path_canonicalization {
if !settings.disable_path_canonicalization {
settings.ref_filename = canonicalize_string_path(&settings.ref_filename);
settings.bam_filename = canonicalize_string_path(&settings.bam_filename);

Expand Down

0 comments on commit 5f0b2b6

Please sign in to comment.