Skip to content

Commit

Permalink
fix: mgf paths were being lowercased (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
lazear committed Mar 15, 2024
1 parent b8ec014 commit 99407db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sage-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ impl Runner {

let path_lower = path.to_lowercase();
let res = if path_lower.ends_with(".mgf.gz") || path_lower.ends_with(".mgf") {
sage_cloudpath::util::read_mgf(path_lower, file_id)
sage_cloudpath::util::read_mgf(path, file_id)
} else if bruker_extensions
.iter()
.any(|ext| path_lower.ends_with(ext))
Expand Down

0 comments on commit 99407db

Please sign in to comment.