Skip to content

VEP-like tool for sequence ontology and HGVS annotation of VCF files

License

Notifications You must be signed in to change notification settings

varfish-org/mehari

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Dec 16, 2024
2031dbd · Dec 16, 2024
Oct 8, 2024
Nov 27, 2024
Nov 20, 2024
Feb 22, 2024
Nov 11, 2024
Dec 16, 2024
Nov 19, 2024
Nov 8, 2024
Mar 3, 2023
Nov 19, 2024
Jun 13, 2023
Nov 21, 2024
Nov 27, 2024
Nov 27, 2024
Apr 6, 2023
Nov 20, 2024
Nov 8, 2024
Nov 11, 2024
Feb 8, 2024
Nov 21, 2024

Repository files navigation

Crates.io Crates.io Crates.io CI codecov DOI

Mehari

a camel

Mehari is a software package for annotating VCF files with variant effect/consequence. The program uses hgvs-rs for projecting genomic variants to transcripts and proteins and thus has high prediction quality.

Other popular tools offering variant effect/consequence prediction include:

Mehari offers HGVS predictions that aim to mirror VariantValidator, the gold standard for HGVS variant descriptions, and consequence predictions compatible with VEP. Further, it is written in the Rust programming language and can be used as a library for users' Rust software.

Usage

To annotate variant consequences, gnomAD frequencies and clinVar information for sequence variants:

    mehari annotate seqvars \
      --transcripts resources/transcript_db \
      --frequencies resources/gnomad_db \
      --clinvar resources/clinvar_db \
      --path-input-vcf input.vcf \
      --path-output-vcf output.vcf

The corresponding database builds can be obtained from:

See Getting Started for more information on usage, and Development Setup for more information on how to build mehari and its databases from scratch.