Module Biocaml_gff.Tags (.ml)

module Tags: 
sig
type t = {
   version : [ `three | `two ];
   allow_empty_lines : bool;
   sharp_comments : bool;
}
Additional format-information tags (c.f. Biocaml_tags).
val default : t
Default tags for a random Gff file: {version = `three; allow_empty_lines = false; sharp_comments = true}.
val of_string : string ->
(t, [> `gff of [> `tags_of_string of exn ] ])
Biocaml_internal_utils.Result.t
Parse tags (for now S-Expressions).
val to_string : t -> string
Serialize tags (for now S-Expressions).
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t
end