package bistro-bio

  1. Overview
  2. Docs
val is_single_end : t -> bool
val plain_se : Formats.fastq Bistro.file -> t
val compressed_se : Formats.fastq Bistro.gz Bistro.file -> t
type source =
  1. | Fastq_url of string SE_or_PE.t
  2. | Fastq_gz_url of string SE_or_PE.t
  3. | SRA_dataset of {
    1. srr_id : string;
    2. library_type : [ `single_end | `paired_end ];
    }
val fastq_of_source : source -> Formats.fastq Bistro.file SE_or_PE.t
val of_source : source -> t
module type Data = sig ... end
module Make (Data : Data) : sig ... end