package biocaml

  1. Overview
  2. Docs
The OCaml Bioinformatics Library

Install

Dune Dependency

Authors

Maintainers

Sources

v0.11.0.tar.gz
md5=486aeb3e552dabae85839e2af30d6c52
sha512=4ed2df0b7cbd80bd6e29bd8fee9d2dacd9379ad0f4ff142bd8e16ade3f1507f6cc7cbe4c614943b8feb8fa4705935695cb458606b0da813dbf255b1e566a43cf

doc/biocaml.unix/Biocaml_unix/MzData/index.html

Module Biocaml_unix.MzDataSource

Read mzData files (mass spectrometry data format).

Vectors of 64 bits floats.

Vectors of OCaml ints.

Sourcemodule Precursor : sig ... end
Sourcetype spectrum = {
  1. id : int;
    (*

    index of the spectrum in the file (starting with 1).

    *)
  2. mslevel : int;
    (*

    1: MS, 2: MS/MS,...

    *)
  3. precursor : Precursor.t list;
    (*

    List of precursors to the spectrum currently being described.

    *)
  4. mz : vec;
    (*

    m/z

    *)
  5. int : vec;
    (*

    intensities

    *)
  6. sup : (string * vec) list;
    (*

    Supplemental (name, arrays), if any

    *)
}

Individual mass spectrum.

Sourceval of_file : string -> spectrum list

of_file fname returns the spectra contained in the file fname.

OCaml

Innovation. Community. Security.