package biocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type item = private {
  1. chrom : string;
  2. chrom_start : int;
  3. chrom_end : int;
  4. name : string;
  5. score : int;
  6. others : string list;
}
include sig ... end
val item_of_sexp : Sexplib.Sexp.t -> item
val sexp_of_item : item -> Sexplib.Sexp.t
val make : chrom:string -> chrom_start:int -> chrom_end:int -> name:string -> score:int -> ?others:string list -> unit -> (item, string) Pervasives.result
val set_score : item -> int -> item
val item_of_line : Line.t -> (item, string) Pervasives.result
val line_of_item : item -> Line.t