Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Oct 11, 2023
1 parent 9b5ecce commit 1b81b03
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/strucvars/query/genes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,11 @@ pub fn load_gene_db(path_db: &str, genome_release: GenomeRelease) -> Result<Gene
)?,
xlink: load_xlink_db(Path::new(path_db).join("noref/genes/xlink.bin").as_path())?,
acmg: load_acmg_db(Path::new(path_db).join("noref/genes/acmg.tsv").as_path())?,
mim2gene: load_mim2gene_db(Path::new(path_db).join("noref/genes/mim2gene.tsv").as_path())?,
mim2gene: load_mim2gene_db(
Path::new(path_db)
.join("noref/genes/mim2gene.tsv")
.as_path(),
)?,
};

Ok(result)
Expand Down

0 comments on commit 1b81b03

Please sign in to comment.