Module Biokepi_bfx_tools.Gatk.Configuration.Mutect2 (.ml)

module Mutect2: sig .. end

type t = {
   name : string;
   use_dbsnp : bool;
   use_cosmic : bool;
   additional_arguments : string list;
}
val create : ?use_dbsnp:bool ->
?use_cosmic:bool ->
string -> string list -> t
val to_json : t -> Yojson.Basic.json
val default : t
val default_without_cosmic : t
val compile : reference:Biokepi_run_environment.Reference_genome.t ->
t ->
[> `Arguments of string list ] *
[> `Edges of Biokepi_run_environment.Common.KEDSL.workflow_edge list ]
val name : t -> string