Getting Started.
As a prerequisite, follow the bioconda getting started guide.
Then, create a new environment;
conda create -n mehari -y mehari
conda activate mehari
The mehari
executable is now available from within the activated mehari
conda environment:
mehari --help
Docker images of mehari are available from ghcr.io, see ghcr.io/varfish-org/mehari.
- transcript database releases: https://github.com/varfish-org/mehari-data-tx/releases
- gnomAD frequency database releases: TODO
- clinVar database releases: https://github.com/varfish-org/annonars-data-clinvar/releases
You can obtain an example file like this:
wget https://raw.githubusercontent.com/varfish-org/mehari/main/tests/data/db/create/seqvar_freqs/db-rs1263393206/input.vcf -O example.vcf
Now, annotate it using Mehari:
mehari annotate seqvars \
--transcripts path/to/mehari-transcript-db \
--frequencies path/to/mehari-frequency-db \
--clinvar path/to/mehari-clinvar-db \
--path-input-vcf example.vcf \
--path-output-vcf example.out.vcf