module Track: Biocaml_track
module TrackLine: sig
.. end
Track lines define display attributes.
module BrowserLines: sig
.. end
Browser lines configure the overall display of the Genome Browser when your file is uploaded.
type
block =
A block of information.
WIG data section
type
t
Type of a track file. Can be thought of as a list of blocks with certain restrictions on the order in which blocks occur.
exception Bad of string
val to_channel : ?wig_fmt:Biocaml_wig.format ->
t -> Pervasives.out_channel -> unit
val to_file : ?wig_fmt:Biocaml_wig.format -> t -> string -> unit
val to_list : t -> block list
val of_list : block list -> t