struct   type t = [     `String of string   ]   let of_string s =     `String s   let to_string f =     match f with     | `String s -> s   module Defaults = struct     let only_split_reads =       of_string "cigar =~ /^.*N.*$/"     let drop_split_reads =       of_string "cigar =~ /^[0-9MIDSHPX=]*$/"   end end