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