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
v0.10.1.tar.gz
md5=4cf944bcae5d36bf47b67f6bcb2455d7
sha512=0262b5768aefd7c080f664c46c88876fce9a658cc6a87358a77b7112c49ae3042e7ab542e76be5738fbaeda853149b308b48d4897960b5c7ae3b4da71d978bd8
doc/biocaml.unix/Biocaml_unix/Gff/index.html
Module Biocaml_unix.Gff
GFF files.
Versions 2 and 3 are supported. The only difference is the delimiter used for tag-value pairs in the attribute list: 3 uses an equal sign, and 2 uses a space. Version 3 also has additional requirements, e.g. the feature must be a sequence ontology term, but these are not checked.
More information:
- Version 2: www.sanger.ac.uk/resources/software/gff/spec.html, gmod.org/wiki/GFF2
- Version 3: www.sequenceontology.org/gff3.shtml, gmod.org/wiki/GFF3
GFF Item Types
type record = {seqname : string;source : string option;feature : string option;pos : int * int;score : float option;strand : [ `plus | `minus | `not_applicable | `unknown ];phase : int option;attributes : (string * string list) list;
}The type of the GFF records/rows.
The items being output by the parser.
Error Types
module Error : sig ... endThe errors of the Gff module.
Tags.t
module Tags : sig ... endIn_channel.t Functions
exception Error of Error.tThe exception raised by the *_exn functions.
val in_channel_to_item_stream :
?buffer_size:int ->
?filename:string ->
?tags:Tags.t ->
Core_kernel.In_channel.t ->
(item, [> Error.parsing ]) Core_kernel.result Stream.tParse an input-channel into item values.
val in_channel_to_item_stream_exn :
?buffer_size:int ->
?tags:Tags.t ->
Core_kernel.In_channel.t ->
item Stream.tLike in_channel_to_item_stream but use exceptions for errors (raised within Stream.next).
To_string Function
Tfxm.t
module Transform : sig ... endLower-level stream transformations.
S-Expressions
val record_of_sexp : Sexplib.Sexp.t -> recordval sexp_of_record : record -> Sexplib.Sexp.tval item_of_sexp : Sexplib.Sexp.t -> itemval sexp_of_item : item -> Sexplib.Sexp.t sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page