Indicator function on a genome
module Selection:
sig
type 'a
t
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
end