Hello team,
I am trying to annotate a variant data in matrixtable format on the DNAnexus platform using hail with gnomAD database. The hail version in DNAnexus is 0.2.78. I am using hl.experimental.DB() and db.annotate_rows_db() for annotate my mt data. My code ran ok, but I got all missing values for the annotation fields from gnomAD. Can you please help me to figure it out what went wrong and I can get the annotation values from gnomAD? Thanks very much for your help.
My code is below:
fmturl = ‘dnax://…/filtered.mt’
filtered_mt=hl.read_matrix_table(fmturl)
db = hl.experimental.DB(region=‘us’, cloud=‘aws’)
ann_mt = db.annotate_rows_db(filtered_mt, ‘gnomad_genome_sites’)
I got the message below after running the above code
2023-02-06 20:05:46 Hail: INFO: index_compatible_version: More than one compatible version exists for annotation dataset: gnomad_genome_sites. Rows have been annotated with version 3.1.
convert matrixtable to hail table
ann_tb = ann_mt.rows()
ann_tb.show()