package biotk

  1. Overview
  2. Docs

XLS output

type item = [
  1. | `Comment of string
  2. | `Record of record
  3. | `Header
]
and record = {
  1. chr : string;
  2. start : int;
  3. end_ : int;
  4. length : int;
  5. abs_summit : int;
  6. pileup : float;
  7. log10pvalue : float;
  8. fold_enrichment : float;
  9. log10qvalue : float;
  10. name : string;
}
val parse_line : Biocaml_base.Line.t -> (item, [> `Msg of string ]) result
val read : string -> (item list, [> `Msg of string ]) result
val loc_of_record : record -> GLoc.t