package biotk

  1. Overview
  2. Docs
type record = {
  1. chrom : string;
  2. chromStart : int;
  3. chromEnd : int;
  4. name : string;
  5. score : int;
}
module Record : sig ... end
include S with type record := Record.t
val load : string -> Record.t item list
val load_records : string -> Record.t list
val load_as_lmap : string -> Record.t GAnnot.LMap.t
val save : Record.t item list -> string -> unit
val save_records : Record.t list -> string -> unit