package biocaml
Install
Dune Dependency
Authors
Maintainers
Sources
md5=497e3f2f7128a6ca347d66848da38a3d
sha512=4a76ebbafda3bc944afaff40d69791dfe153a0638ef5d7e6e1bc962b7f991d9545cd0af2d7930b39f8b31dbf067d0603cfa03d9b7a49396ab1ae452df47fd1f3
doc/biocaml.unix/Biocaml_unix/Cel/index.html
Module Biocaml_unix.Cel
Affymetrix's CEL files. Only text format supported. Binary file must be converted using Affymetrix's conversion tool. This tool does not change file extension, so be sure your file really is in text format.
val of_file : string -> t
Parse given file if possible. Raise Bad
if there are any parse errors.
val of_file_opt : string -> t option
Parse given file if possible.
Operations on Intensity Section
Represents row in intensity section
ifold f a t
folds over data rows in intensity section of t
.
val data : Bpmap.t -> t list -> (Bpmap.probe * (idata * idata) list) list
data bpmap cels
returns a list associating probes with pairs of (PM,MM) idata in each of the given cel files (in the same order of course). Raise Failure
if any file in cels
lacks a value for any probe in bpmap
.
val pm_mm : Bpmap.t -> t list -> (Bpmap.probe * float list) list
Similar to data
but the data returned are the PM-MM mean intensity values in cels
.
val pm : Bpmap.t -> t list -> (Bpmap.probe * float list) list
Similar to data
but the data returned are the PM mean intensity values in cels
.
val mm : Bpmap.t -> t list -> (Bpmap.probe * float list) list
Similar to data
but the data returned are the MM mean intensity values in cels
.