package biocaml
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
On This Page
  
  
  The OCaml Bioinformatics Library
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
  
    
      biocaml-0.11.2.tbz
    
    
        
    
  
  
  
    
  
  
    
  
        sha256=fae219e66db06f81f3fd7d9e44717ccf2d6d85701adb12004ab4ae6d3359dd2d
    
    
  sha512=f6abd60dac2e02777be81ce3b5acdc0db23b3fa06731f5b2d0b32e6ecc9305fe64f407bbd95a3a9488b14d0a7ac7c41c73a7e18c329a8f18febfc8fd50eccbc6
    
    
  doc/biocaml.unix/Biocaml_unix/Bar/index.html
Module Biocaml_unix.BarSource
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