package biotk

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

Module Macs2.XlsSource

XLS output

Sourcetype item = [
  1. | `Comment of string
  2. | `Record of record
  3. | `Header
]
Sourceand 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;
}
Sourceval parse_line : Biocaml_base.Line.t -> (item, [> `Msg of string ]) result
Sourceval read : string -> (item list, [> `Msg of string ]) result
Sourceval loc_of_record : record -> GLoc.t