Skip to content

Commit

Permalink
add check for genome_seq_available
Browse files Browse the repository at this point in the history
  • Loading branch information
tedil committed Feb 12, 2025
1 parent f6023b6 commit 273be0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mapper/variant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ impl Mapper {
var_g.clone()
};

let var_g = if self.config.renormalize_g {
let var_g = if self.config.renormalize_g && self.config.genome_seq_available {
self.normalizer()?.normalize(&var_g)?
} else {
var_g.clone()
Expand Down

0 comments on commit 273be0b

Please # to comment.