class Ensembl::Core::MarkerFeature
The MarkerFeature
class provides an interface to the marker_feature table. This table contains mappings of markers to a SeqRegion
.
This class uses ActiveRecord
to access data in the Ensembl
database. See the general documentation of the Ensembl
module for more information on what this means and what methods are available.
This class includes the mixin Sliceable
, which means that it is mapped to a SeqRegion
object and a Slice
can be created for objects of this class. See Sliceable
and Slice
for more information.
@example
marker = Marker.find(52194) puts marker.marker_feature.seq_region_start.to_s puts marker.marker_feature.seq_region_end.to_s