Class: Bio::Map::Marker
- Includes:
- ActsLikeMarker
- Defined in:
- lib/bio/map.rb
Overview
Instance Attribute Summary collapse
-
#mappings_as_marker ⇒ Object
Mappings.
-
#name ⇒ Object
Name of the marker.
Instance Method Summary collapse
-
#initialize(name) ⇒ Marker
constructor
- Builds a new Bio::Map::Marker object — Arguments: * name: name of the marker Returns
-
new Bio::Map::Marker object.
Methods included from ActsLikeMarker
#add_mapping_as_marker, #mapped_to?, #mappings_on, #positions_on
Constructor Details
#initialize(name) ⇒ Marker
Builds a new Bio::Map::Marker object
Arguments:
-
name: name of the marker
- Returns
-
new Bio::Map::Marker object
395 396 397 398 |
# File 'lib/bio/map.rb', line 395 def initialize(name) @name = name @mappings_as_marker = Array.new end |