package biocaml

  1. Overview
  2. Docs
The OCaml Bioinformatics Library

Install

Dune Dependency

Authors

Maintainers

Sources

v0.10.0.tar.gz
md5=497e3f2f7128a6ca347d66848da38a3d
sha512=4a76ebbafda3bc944afaff40d69791dfe153a0638ef5d7e6e1bc962b7f991d9545cd0af2d7930b39f8b31dbf067d0603cfa03d9b7a49396ab1ae452df47fd1f3

doc/biocaml.ez/Biocaml_ez/Fastq/Illumina/index.html

Module Fastq.Illumina

include module type of struct include Biocaml_unix.Fastq.Illumina end
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
OCaml

Innovation. Community. Security.