package biocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

XLS output

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