let hg38 =
let hg38_url =
"ftp://gsapubftp-anonymous@ftp.broadinstitute.org/bundle/hg38/hg38bundle/Homo_sapiens_assembly38.fasta.gz" in
let dbsnp_hg38 =
"ftp://gsapubftp-anonymous@ftp.broadinstitute.org/bundle/hg38/hg38bundle/Homo_sapiens_assembly38.dbsnp.vcf.gz" in
let known_indels_hg38 =
"ftp://gsapubftp-anonymous@ftp.broadinstitute.org/bundle/hg38/hg38bundle/Homo_sapiens_assembly38.known_indels.vcf.gz" in
create Name.hg38
~species:human
~ensembl:87
~metadata:"Provided by the Biokepi library"
~major_contigs:major_contigs_hg_family
~fasta:Location.(url hg38_url|> gunzip)
~dbsnp:Location.(url dbsnp_hg38 |> gunzip)
~known_indels:Location.(url known_indels_hg38 |> gunzip)
~snpeff_name:"GRCh38.86"