Hi Hail Team!
I wanted to open my GRCh38 ClinVar VCF file from ncbi onto Hail.
I converted the gz format to bzip by:
gunzip -c file.vcf.gz | bgzip > file.vcf.bgz
And then ran
mt = hl.import_vcf('GRCh38_latest_clinvar.vcf.bgz', reference_genome = 'GRCh38')
mt.show()
However, this mssg shows up:
Hail version: 0.2.60-de1845e1c2f6
Error summary: HailException: Invalid locus '1:930188' found. Contig '1' is not in the reference genome 'GRCh38'.
What should I do to fix this?
Thank you!