Skip to content

Commit

Permalink
feat: exposing more functions for sequence variant annotation (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Oct 5, 2023
1 parent 7d77f35 commit 06a8dee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/annotate/seqvars/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ fn build_header(header_in: &VcfHeader) -> VcfHeader {
}

/// Annotate record on autosomal chromosome with gnomAD exomes/genomes.
fn annotate_record_auto<T>(
pub fn annotate_record_auto<T>(
db: &rocksdb::DBWithThreadMode<T>,
cf: &Arc<rocksdb::BoundColumnFamily>,
key: &Vec<u8>,
Expand Down Expand Up @@ -278,7 +278,7 @@ where
}

/// Annotate record on gonomosomal chromosome with gnomAD exomes/genomes.
fn annotate_record_xy<T>(
pub fn annotate_record_xy<T>(
db: &rocksdb::DBWithThreadMode<T>,
cf: &Arc<rocksdb::BoundColumnFamily>,
key: &Vec<u8>,
Expand Down Expand Up @@ -340,7 +340,7 @@ where
}

/// Annotate record on mitochondrial genome with gnomAD mtDNA and HelixMtDb.
fn annotate_record_mt<T>(
pub fn annotate_record_mt<T>(
db: &rocksdb::DBWithThreadMode<T>,
cf: &Arc<rocksdb::BoundColumnFamily>,
key: &Vec<u8>,
Expand Down

0 comments on commit 06a8dee

Please sign in to comment.