sig
  type fasta_pair_to_fastq =
      [ `cannot_convert_to_phred_score of int list
      | `sequence_names_mismatch of string * string ]
  type parsing =
      [ `incomplete_input of Biocaml_pos.t * string list * string option
      | `sequence_and_qualities_do_not_match of
          Biocaml_pos.t * string * string
      | `wrong_comment_line of Biocaml_pos.t * string
      | `wrong_name_line of Biocaml_pos.t * string ]
  type t =
      [ `cannot_convert_to_phred_score of int list
      | `incomplete_input of Biocaml_pos.t * string list * string option
      | `sequence_and_qualities_do_not_match of
          Biocaml_pos.t * string * string
      | `sequence_names_mismatch of string * string
      | `wrong_comment_line of Biocaml_pos.t * string
      | `wrong_name_line of Biocaml_pos.t * string ]
  val t_of_sexp : Sexplib.Sexp.t -> Biocaml_fastq.Error.t
  val sexp_of_t : Biocaml_fastq.Error.t -> Sexplib.Sexp.t
  val t_to_string : Biocaml_fastq.Error.t -> string
end