To focus the search input from anywhere on the page, press the 'S' key.
in-package search v0.1.0
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
package biocaml
-
biocaml.ez
-
-
biocaml.unix
-
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
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 : Base.string;
source : Base.string Base.option;
feature : Base.string Base.option;
start_pos : Base.int;
stop_pos : Base.int;
score : Base.float Base.option;
strand : [ `Plus | `Minus | `Not_stranded | `Unknown ];
phase : Base.int Base.option;
attributes : (Base.string * Base.string Base.list) Base.list;
}
The type of the GFF records/rows.
The items being output by the parser.
val record :
?source:Base.string ->
?feature:Base.string ->
?score:Base.float ->
?strand:[ `Plus | `Minus | `Not_stranded | `Unknown ] ->
?phase:Base.int ->
?attributes:(Base.string * Base.string Base.list) Base.list ->
Base.string ->
Base.int ->
Base.int ->
record
val gff3_item_of_line :
Line.t ->
(item, [> `Msg of Base.string ]) Base.Result.t
val gtf_item_of_line : Line.t -> (item, [> `Msg of Base.string ]) Base.Result.t
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page