Skip to content

Commit

Permalink
v0.1.5 final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bluenote-1577 committed Sep 1, 2023
1 parent 0c2c87a commit 3018522
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
### v0.1.5 released - 2023-08-TODO
### v0.1.5 released - 2023-09-01

#### Major

* changed query-reference selection to ...
* robust now uses the learned ANI debiasing procedure
Improved "N" character support:

* changed query-reference selection method slightly via a slight hack, using marker seeds to estimate reference length instead. This makes it so NNN characters are not counted.
* Now seeds with "N" characters present are no longer indexed.

#### Minor
* --robust now uses the learned ANI debiasing procedure by default.

### v0.1.4 released - 2023-06-14

Expand Down
2 changes: 1 addition & 1 deletion src/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ pub fn parse_params(matches: &ArgMatches) -> (SketchParams, CommandParams) {

if ref_file_list.is_some() {
let ref_file_list = ref_file_list.unwrap();
let file = File::open(ref_file_list).unwrap();
let file = File::open(ref_file_list).expect("-l specified file could not be opened properly. Make sure this file exists. Exiting.");
let reader = BufReader::new(file);
let mut temp_vec = vec![];

Expand Down

0 comments on commit 3018522

Please sign in to comment.