package biocaml
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=fae219e66db06f81f3fd7d9e44717ccf2d6d85701adb12004ab4ae6d3359dd2d
sha512=f6abd60dac2e02777be81ce3b5acdc0db23b3fa06731f5b2d0b32e6ecc9305fe64f407bbd95a3a9488b14d0a7ac7c41c73a7e18c329a8f18febfc8fd50eccbc6
doc/biocaml.unix/Biocaml_unix/Cel/index.html
Module Biocaml_unix.Cel
Source
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.
The type of a CEL file.
Raised when encountering ill-formed CEL type.
Parse given file if possible. Raise Bad
if there are any parse errors.
Operations on Intensity Section
type idata = {
mean : float;
(*mean intensity value
*)stdv : float;
(*standard deviation of intensity
*)npixels : int;
(*number of pixels used in mean/stdv calculation
*)
}
Represents row in intensity section
ifold f a t
folds over data rows in intensity section of t
.
iiter f t
iterates over the rows in intensity section of t
.
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
.
Similar to data
but the data returned are the PM-MM mean intensity values in cels
.
Similar to data
but the data returned are the PM mean intensity values in cels
.
Similar to data
but the data returned are the MM mean intensity values in cels
.