package biotk

  1. Overview
  2. Docs
type item = {
  1. description : string;
  2. sequence : string;
  3. comment : string;
  4. quality : string;
}
val sexp_of_item : item -> Sexplib0.Sexp.t
val item_of_sexp : Sexplib0.Sexp.t -> item
type parsing_error = [
  1. | `Malformed_line of int * string
  2. | `Unexpected_EOF
]
val sexp_of_parsing_error : parsing_error -> Sexplib0.Sexp.t
val parsing_error_of_sexp : Sexplib0.Sexp.t -> parsing_error
val __parsing_error_of_sexp__ : Sexplib0.Sexp.t -> parsing_error
val fold_file : string -> init:'a -> f:('a -> item -> ('a, 'b) Core.result) -> ('a, [> parsing_error ] as 'b) Core.result
module Stats : sig ... end