module Bio::Map::ActsLikeMarker

Description

The Bio::Map::ActsLikeMarker module contains methods that are typical for marker-like things:

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

For example:

class MyMarkerThing
  include Bio::Map::ActsLikeMarker

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