package biotk

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Gff.RecordSource

Sourcetype t = {
  1. seqname : string;
  2. source : string option;
  3. feature : string option;
  4. start_pos : int;
  5. stop_pos : int;
  6. score : float option;
  7. strand : [ `Plus | `Minus | `Not_stranded | `Unknown ];
  8. phase : int option;
  9. attributes : (string * string list) list;
}
include Sexplib0.Sexpable.S with type t := t
Sourceval t_of_sexp : Sexplib0.Sexp.t -> t
Sourceval sexp_of_t : t -> Sexplib0.Sexp.t
Sourceval loc : t -> GLoc.t
Sourceval length : t -> int
Sourceval attribute_exn : t -> string -> string