package biotk

  1. Overview
  2. Docs
type t = Biocaml_base.Gff.record = {
  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 Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val loc : t -> GLoc.t
val length : t -> int
val attribute_exn : t -> string -> string