Affymetrix's BAR files. Their Tiling Analysis Software (TAS)
produces BAR files in binary format but this module supports only the
text format generated by selecting the "Export probe analysis as TXT"
option.
module Biocaml_bar: sigtype t
exception Bad of string
type section = private {
|
sec_num : |
(* | order in which section appears in file, first section is numbered 1 | *) |
|
sec_name : |
(* | chromosome name relative to which coordinates are given | *) |
|
sec_data : |
(* | pairs of coordinate-score data | *) |
val to_list : t -> (string * int * float) listval section : t -> string -> sectionsection t name returns the section named name. Raise Failure
if no such section.val sectioni : t -> int -> sectionsectioni t i returns the i'th section. Raise Failure if no
such section.val genomic_map : t -> stringval alg_version : t -> stringval coord_convention : t -> stringend