Functor Biokepi_bfx_tools.Gatk.Configuration.Gatk_config (.ml)

module Gatk_config: 
functor (* : sig
end) -> sig .. end
Parameters:
* : ()

type t = {
   name : string;
   filter_reads_with_n_cigar : bool; (*
Ignore reads with mismatching numbers of bases and base qualities, instead of failing with an error.
*)
   filter_mismatching_base_and_quals : bool; (*
Ignore reads with no stored bases (i.e. '*' where the sequence should be), instead of failing with an error
*)
   filter_bases_not_stored : bool;
   parameters : (string * string) list;
}
val name : t -> string
val to_json : t -> Yojson.Basic.json
val render : t -> string list
val default : t