Module Values.SequenceInformationSource

Details about a sequence.

Sourcetype nonrec t = {
  1. totalReadCount : Long.t option;
    (*

    The sequence's total read count.

    *)
  2. totalBaseCount : Long.t option;
    (*

    The sequence's total base count.

    *)
  3. generatedFrom : GeneratedFrom.t option;
    (*

    Where the sequence originated.

    *)
  4. alignment : String_.t option;
    (*

    The sequence's alignment setting.

    *)
}
Sourceval make : ?totalReadCount:??? -> ?totalBaseCount:??? -> ?generatedFrom:??? -> ?alignment:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of GeneratedFrom.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t