package biocaml
The OCaml Bioinformatics Library
Install
Dune Dependency
Authors
Maintainers
Sources
v0.11.0.tar.gz
md5=486aeb3e552dabae85839e2af30d6c52
sha512=4ed2df0b7cbd80bd6e29bd8fee9d2dacd9379ad0f4ff142bd8e16ade3f1507f6cc7cbe4c614943b8feb8fa4705935695cb458606b0da813dbf255b1e566a43cf
doc/biocaml.unix/Biocaml_unix/Bar/index.html
Module Biocaml_unix.Bar
Source
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.
Type of a BAR file, which can be thought of as a header plus set of sections.
Source
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.
Header Information
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page