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:
sig
type
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) list
val section : t -> string -> section
section t name
returns the section named name
. Raise Failure
if no such section.val sectioni : t -> int -> section
sectioni t i
returns the i
'th section. Raise Failure
if no
such section.val genomic_map : t -> string
val alg_version : t -> string
val coord_convention : t -> string
end