module Bio::Map::ActsLikeMap

Description

The Bio::Map::ActsLikeMap module contains methods that are typical for map-like things:

Classes that include this mixin should provide an array property called mappings_as_map.

For example:

class MyMapThing
  include Bio::Map::ActsLikeMap

  def initialize(name)
    @name = name
    @mappings_as_maps = Array.new
  end
  attr_accessor :name, :mappings_as_map
 end