How do I add custom population frequency data (e.g., ABraOM) in the .yml template? #624
-
I'm trying to use Exomiser with Brazilian clinical cases. Here in Brazil, when working with population-level variant frequencies, we commonly use ABraOM (Arquivo Brasileiro Online de Mutações, Online Archive of Brazilian Mutations). I understand I would need to link Exomiser to the ABraOM dataset somehow, but I'm not sure how to go about it. Any guidance would be greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi @DanielBarachoFontes Yes, this is possible. You can add a Then in your # local frequencies are required to be normalised in the same manner as the input VCF and frequency values must be percentages.
#exomiser.hg19.local-frequency-path=${exomiser.data-directory}/local/local_frequency_test_hg19.tsv.gzYou will probably need to post-process the file to fit this file format: and then bgzip and tabix index the file: bgzip file > file.gz
tabix -s1 -b2 -e2 -c# file.gzYou can test if it is working by just running the |
Beta Was this translation helpful? Give feedback.
Hi @DanielBarachoFontes Yes, this is possible. You can add a
LOCALfrequency data source. e.g.Then in your
application.propertiesfile edit and uncomment this line, ensuring you have provided the correct genome assembly (i.e. make sure you use hg19 for GRCh37 or hg38 for GRCh38):You will probably need to post-process the file to fit this file format:
https://github.com/exomiser/Exomiser/blob/master/…