sig
  type range = Biocaml_range.t
  type 'a location = 'a * Biocaml_genomeMap.range
  module Selection :
    sig
      type 'a t
      val inter :
        'Biocaml_genomeMap.Selection.t ->
        'Biocaml_genomeMap.Selection.t -> 'Biocaml_genomeMap.Selection.t
      val union :
        'Biocaml_genomeMap.Selection.t ->
        'Biocaml_genomeMap.Selection.t -> 'Biocaml_genomeMap.Selection.t
      val diff :
        'Biocaml_genomeMap.Selection.t ->
        'Biocaml_genomeMap.Selection.t -> 'Biocaml_genomeMap.Selection.t
      val size : 'Biocaml_genomeMap.Selection.t -> int
      val intersects :
        'Biocaml_genomeMap.location ->
        'Biocaml_genomeMap.Selection.t -> bool
      val intersection_size :
        'Biocaml_genomeMap.location ->
        'Biocaml_genomeMap.Selection.t -> int
      val to_stream :
        'Biocaml_genomeMap.Selection.t ->
        'Biocaml_genomeMap.location Stream.t
      val of_stream :
        'Biocaml_genomeMap.location Stream.t ->
        'Biocaml_genomeMap.Selection.t
    end
  module type Signal =
    sig
      type ('a, 'b) t
      val make :
        ('b list -> 'c) ->
        ('Biocaml_genomeMap.location * 'c) Stream.t ->
        ('a, 'c) Biocaml_genomeMap.Signal.t
      val eval : '-> int -> ('a, 'b) Biocaml_genomeMap.Signal.t -> 'b
      val fold :
        ('-> Biocaml_genomeMap.range -> '-> '-> 'c) ->
        ('a, 'b) Biocaml_genomeMap.Signal.t -> '-> 'c
      val to_stream :
        ('a, 'b) Biocaml_genomeMap.Signal.t ->
        ('Biocaml_genomeMap.location * 'b) Stream.t
    end
  module LSet :
    sig
      type 'a t
      val to_stream :
        'Biocaml_genomeMap.LSet.t -> 'Biocaml_genomeMap.location Stream.t
      val of_stream :
        'Biocaml_genomeMap.location Stream.t -> 'Biocaml_genomeMap.LSet.t
      val intersects :
        'Biocaml_genomeMap.location -> 'Biocaml_genomeMap.LSet.t -> bool
      val closest :
        'Biocaml_genomeMap.location ->
        'Biocaml_genomeMap.LSet.t ->
        ('Biocaml_genomeMap.location * int) option
      val intersecting_elems :
        'Biocaml_genomeMap.location ->
        'Biocaml_genomeMap.LSet.t -> 'Biocaml_genomeMap.location Stream.t
    end
  module LMap :
    sig
      type ('a, 'b) t
      val to_stream :
        ('a, 'b) Biocaml_genomeMap.LMap.t ->
        ('Biocaml_genomeMap.location * 'b) Stream.t
      val of_stream :
        ('Biocaml_genomeMap.location * 'b) Stream.t ->
        ('a, 'b) Biocaml_genomeMap.LMap.t
      val intersects :
        'Biocaml_genomeMap.location ->
        ('a, 'b) Biocaml_genomeMap.LMap.t -> bool
      val closest :
        'Biocaml_genomeMap.location ->
        ('a, 'b) Biocaml_genomeMap.LMap.t ->
        ('Biocaml_genomeMap.location * 'b * int) option
      val intersecting_elems :
        'Biocaml_genomeMap.location ->
        ('a, 'b) Biocaml_genomeMap.LMap.t ->
        ('Biocaml_genomeMap.location * 'b) Stream.t
    end
  module type LMap_spec =
    sig
      type ('a, 'b) t
      val make :
        ('Biocaml_genomeMap.location * 'b) Stream.t ->
        ('a, 'b) Biocaml_genomeMap.LMap_spec.t
      val fold :
        ('-> Biocaml_genomeMap.range -> '-> '-> 'c) ->
        ('a, 'b) Biocaml_genomeMap.LMap_spec.t -> '-> 'c
      val pwfold :
        ('-> Biocaml_genomeMap.range -> 'b list -> '-> 'c) ->
        ('a, 'b) Biocaml_genomeMap.LMap_spec.t -> '-> 'c
      val intersects :
        'Biocaml_genomeMap.location ->
        ('a, 'b) Biocaml_genomeMap.LMap_spec.t -> bool
      val to_stream :
        ('a, 'b) Biocaml_genomeMap.LMap_spec.t ->
        ('Biocaml_genomeMap.location * 'b) Stream.t
      val union :
        ('a, 'b) Biocaml_genomeMap.LMap_spec.t ->
        ('a, 'b) Biocaml_genomeMap.LMap_spec.t ->
        ('a, 'b) Biocaml_genomeMap.LMap_spec.t
      val add :
        'Biocaml_genomeMap.location ->
        '->
        ('a, 'b) Biocaml_genomeMap.LMap_spec.t ->
        ('a, 'b) Biocaml_genomeMap.LMap_spec.t
    end
end