Biocaml_unix.GffSourceGFF 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:
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.
Tags.tIn_channel.t Functionsval in_channel_to_item_stream :
?buffer_size:int ->
?filename:string ->
?tags:Tags.t ->
Core.In_channel.t ->
(item, [> Error.parsing ]) Core.result Stream.tParse an input-channel into item values.
val in_channel_to_item_stream_exn :
?buffer_size:int ->
?tags:Tags.t ->
Core.In_channel.t ->
item Stream.tLike in_channel_to_item_stream but use exceptions for errors (raised within Stream.next).
To_string FunctionTfxm.t