package biotk

  1. Overview
  2. Docs
type item = {
  1. chrom : string;
  2. chromStart : int;
  3. chromEnd : int;
}
module Item : sig ... end
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