module Location:sig
..end
typet =
[ `Bunzip2 of
t
| `Concat of
t list
| `Gunzip of
t
| `Untar of t
| `Url of string
| `Vcf_concat of
(string *
t)
list ]
val url : 'a -> [> `Url of 'a ]
val vcf_concat : 'a -> [> `Vcf_concat of 'a ]
val concat : 'a -> [> `Concat of 'a ]
val gunzip : 'a -> [> `Gunzip of 'a ]
val bunzip2 : 'a -> [> `Bunzip2 of 'a ]
val untar : 'a -> [> `Untar of 'a ]