sig
  type line_parsing =
      [ `wrong_format of
          [ `column_number
          | `float_of_string of string
          | `int_of_string of string ] * Biocaml_table.Row.t_type * string ]
  type t = Biocaml_table.Row.Error.line_parsing
  val line_parsing_of_sexp :
    Sexplib.Sexp.t -> Biocaml_table.Row.Error.line_parsing
  val sexp_of_line_parsing :
    Biocaml_table.Row.Error.line_parsing -> Sexplib.Sexp.t
  val t_of_sexp : Sexplib.Sexp.t -> Biocaml_table.Row.Error.t
  val sexp_of_t : Biocaml_table.Row.Error.t -> Sexplib.Sexp.t
end