package biotk

  1. Overview
  2. Docs
type item = {
  1. chrom : string;
  2. chromStart : int;
  3. chromEnd : int;
  4. name : string;
}
module Item : Item with type t = item
include S with type item := Item.t
val load : string -> Item.t list
val load_as_lmap : string -> Item.t GAnnot.LMap.t
val save : Item.t list -> string -> unit