package biocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
include module type of struct include Biocaml_unix.Fastq.Illumina end

Illumina-specific operations

type surface = [
  1. | `Top
  2. | `Bottom
]
type tile = private Biocaml_unix.Fastq.Illumina.tile = {
  1. surface : surface;
  2. swath : int;
    (*

    1, 2, or 3

    *)
  3. number : int;
    (*

    1 - 99, but usually 1 - 8

    *)
}
val tile_to_string : tile -> string

Inverse of tile_of_string.

type sequence_id = private Biocaml_unix.Fastq.Illumina.sequence_id = {
  1. instrument : string;
  2. run_number : int;
  3. flowcell_id : string;
  4. lane : int;
  5. tile : tile;
  6. x_pos : int;
  7. y_pos : int;
  8. read : int;
  9. is_filtered : bool;
  10. control_number : int;
  11. index : string;
}

Content of name lines as generated by Casava versions >= 1.8.

val tile_of_string : string -> tile
val sequence_id_of_string : string -> sequence_id