Getting Started.
As a prerequisite, follow the bioconda getting started guide.
Then, create a new environment;
conda create -n mehari -y mehari
conda activate mehariThe mehari executable is now available from within the activated mehari conda environment:
mehari --helpDocker 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.vcfNow, 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 \
--input example.vcf \
--output example.out.vcf