module Selection: sig
.. end
Indicator function on a genome
type 'a
t
val inter : 'a t ->
'a t -> 'a t
val union : 'a t ->
'a t -> 'a t
val diff : 'a t ->
'a t -> 'a t
val size : 'a t -> int
val intersects : 'a Biocaml_genomeMap.location -> 'a t -> bool
intersects loc sel
returns true
if loc
has a non-empty
intersection with sel
, and false
otherwise.
val intersection_size : 'a Biocaml_genomeMap.location -> 'a t -> int
val to_stream : 'a t -> 'a Biocaml_genomeMap.location Stream.t
val of_stream : 'a Biocaml_genomeMap.location Stream.t -> 'a t
of_stream e
computes a selection as the union of the locations contained in e