package biotk

  1. Overview
  2. Docs
type header = string list
type item = {
  1. description : string;
  2. sequence : string;
}
val sexp_of_item : item -> Ppx_sexp_conv_lib.Sexp.t
val item_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> item
val from_string : string -> (header * item list, string) result
val from_file : string -> (header * item list, string) result
val from_file_exn : string -> header * item list
val sequences_from_file_exn : string -> string list
val to_file : string -> item list -> unit