package biocaml

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

Module Gff.TagsSource

Sourcetype t = {
  1. version : [ `two | `three ];
  2. allow_empty_lines : bool;
  3. sharp_comments : bool;
}

Additional format-information tags (c.f. Tags).

Sourceval default : t

Default tags for a random Gff file: {version = `three; allow_empty_lines = false; sharp_comments = true}.

Sourceval of_string : string -> (t, [> `gff of [> `tags_of_string of exn ] ]) Core.result

Parse tags (for now S-Expressions).

Sourceval to_string : t -> string

Serialize tags (for now S-Expressions).

Sourceval t_of_sexp : Sexplib.Sexp.t -> t
Sourceval sexp_of_t : t -> Sexplib.Sexp.t