Skip to content

Commit

Permalink
Fix extension error
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebedthan committed Jun 29, 2021
1 parent 3feb9ae commit 67ffffd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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 = "sabreur"
version = "0.3.2"
version = "0.3.3"
authors = ["Anicet Ebou <[email protected]>"]
edition = "2018"
exclude = ["CODE_OF_CONDUCT.md", "tests/*", "benches/*", ".github/*", ".cargo/*"]
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ fn main() -> Result<()> {
// Create unknown file
let mut unk_path = PathBuf::from("");
unk_path.push(output);
unk_path.push(format!("{}{}", "unknown.fa", ext));
unk_path.push(format!("{}{}", "unknown.fq", ext));

let future_unk_path = unk_path.clone();

Expand Down

0 comments on commit 67ffffd

Please sign in to comment.