From 31a00f895dce10e603033a07b8f09abe2afef77e Mon Sep 17 00:00:00 2001 From: Manuel Holtgrewe Date: Thu, 5 Oct 2023 15:33:58 +0200 Subject: [PATCH] feat: exposing more functions for sequence variant annotation --- src/annotate/seqvars/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/annotate/seqvars/mod.rs b/src/annotate/seqvars/mod.rs index cffe84da..d20b24f2 100644 --- a/src/annotate/seqvars/mod.rs +++ b/src/annotate/seqvars/mod.rs @@ -228,7 +228,7 @@ fn build_header(header_in: &VcfHeader) -> VcfHeader { } /// Annotate record on autosomal chromosome with gnomAD exomes/genomes. -fn annotate_record_auto( +pub fn annotate_record_auto( db: &rocksdb::DBWithThreadMode, cf: &Arc, key: &Vec, @@ -278,7 +278,7 @@ where } /// Annotate record on gonomosomal chromosome with gnomAD exomes/genomes. -fn annotate_record_xy( +pub fn annotate_record_xy( db: &rocksdb::DBWithThreadMode, cf: &Arc, key: &Vec, @@ -340,7 +340,7 @@ where } /// Annotate record on mitochondrial genome with gnomAD mtDNA and HelixMtDb. -fn annotate_record_mt( +pub fn annotate_record_mt( db: &rocksdb::DBWithThreadMode, cf: &Arc, key: &Vec,