package biotk

  1. Overview
  2. Docs
type item = {
  1. chr : string;
  2. chr_start : int;
  3. chr_end : int;
  4. name : string;
  5. score : int;
  6. strand : string;
  7. fold_change : float;
  8. log10pvalue : float;
  9. log10qvalue : float;
}
val parse : Biocaml_base.Line.t -> (item, [> `Msg of string ]) result