Functor Biocaml_seq_range.Make (.ml)

module Make: 
functor (S : Identifier) ->
sig
type t = S.t * Biocaml_range.t 
val make : S.t -> int -> int -> t Core.Std.Or_error.t
val seq : t -> S.t
val size : t -> int
val to_string : t -> string
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t
val compare : t -> t -> int

String representation of a sequence range, as <seq>:<start>-<end>
end
Parameters:
S : Identifier