Biocaml_unix.BarSourceAffymetrix'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.
Type of a BAR file, which can be thought of as a header plus set of sections.
type section = private {sec_num : int;order in which section appears in file, first section is numbered 1
*)sec_name : string;chromosome name relative to which coordinates are given
*)sec_data : (int * float) list;pairs of coordinate-score data
*)}Return the data as a list of triplets (chr,pos,v) representing the chromosome name, probe position, and value. Will be returned in ascending order by (chr,pos).
section t name returns the section named name. Raise Failure if no such section.
sectioni t i returns the i'th section. Raise Failure if no such section.