package biocaml
The OCaml Bioinformatics Library
Install
Dune Dependency
Authors
Maintainers
Sources
v0.11.1.tar.gz
md5=e292efa2f61fec33dad63ec897106f59
sha512=35519bf3b1e67a9191ef9bb74eba0dae941e0d05bad89076a36f507dc5c2d105a03c1c917d5a3f7ed9d1da4acbf3199582f78c308aa2a5a22c21f743945c852b
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