Hi, I use vep_or_lookup_vep(ds, reference="GRCh38") to annotate my vcf file.
But it report error:
hail.utils.java.FatalError: HailException: incompatible file format when reading: gs://gnomad-public-requester-pays/resources/context/grch38_context_vep_annotated.ht
supported version: 1.4.0, found 1.5.0
Code I used is:
import hail as hl
hl.init(default_reference=‘GRCh38’)
from gnomad.utils.vep import vep_or_lookup_vep
This error message should be improved, but this means that you’re trying to use an older version of Hail to read a file written with a newer version. You can fix this by updating to the latest release.
Our situation here is quite different. We have a team in different location who is working with hail version 0.2.72. They performed several QC steps on new data arrived from lab and sent the hail matrix table to other team in different location. The other team works with 0.2.42.
Since, the versions are different, they are not able to load new hail matrix table and it gives the above mentioned error. Is there any way that new hail matrix tables can be loaded using older versions?
Also, can you tell us at which version forward compatibility of loading hail matrix table is broken?
PS: We are trying to get every team upgraded to latest hail version.