Skip to content

Commit

Permalink
fix: variants on chrX and chrY were erroneously ignored (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Mar 7, 2024
1 parent 7eb4687 commit 0acc542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/annotate/seqvars/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ where

lazy_static::lazy_static! {
pub static ref CHROM_MT: HashSet<&'static str> = HashSet::from_iter(["M", "MT", "chrM", "chrMT"].into_iter());
pub static ref CHROM_XY: HashSet<&'static str> = HashSet::from_iter(["M", "MT", "chrM", "chrMT"].into_iter());
pub static ref CHROM_XY: HashSet<&'static str> = HashSet::from_iter(["X", "Y", "chrX", "chrY"].into_iter());
pub static ref CHROM_AUTO: HashSet<&'static str> = HashSet::from_iter([
"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18",
"19", "20", "21", "22", "chr1", "chr2", "chr3", "chr4", "chr5", "chr6", "chr7", "chr8", "chr9",
Expand Down

0 comments on commit 0acc542

Please sign in to comment.