Bio::Map
MapI
Summary
Bio::Map::MapI - Interface for describing Map objects in bioperl
Package variables
No package variables defined.
Included modules
Inherit
Synopsis
# get a MapI somehowe
my $name = $map->name(); # string
my $length = $map->length(); # integer
my $species= $map->species; # Bio::Species
my $type = $map->type(); # genetic/sts/rh/
Description
This object describes the basic functionality of a Map in bioperl.
Maps are anything from Genetic Map to Sequence Map to and Assembly Map
to Restriction Enzyme to FPC.
Methods
Methods description
Title : species
Usage : my $species = $map->species;
Function: Get/Set Species for a map
Returns : Bio::Species object Args : (optional) Bio::Species |
Title : units
Usage : $map->units('cM');
Function: Get/Set units for a map
Returns : units for a map
Args : units for a map (string) |
Title : type
Usage : my $type = $map->type
Function: Get/Set Map type
Returns : String coding map type
Args : (optional) string |
Title : name
Usage : my $name = $map->name
Function: Get/Set Map name
Returns : Map name
Args : (optional) string |
Title : length
Usage : my $length = $map->length();
Function: Retrieves the length of the map,
It is possible for the length to be unknown
for maps such as Restriction Enzyme, will return undef
in that case
Returns : integer representing length of map in current units
will return undef if length is not calculateable
Args : none |
Title : unique_id
Usage : my $id = $map->unique_id;
Function: Get/Set the unique ID for this map
Returns : a unique identifier
Args : [optional] new identifier to set |
Title : add_element
Usage : $map->add_element($marker)
Function: Add a Bio::Map::MappableI object to the Map
Returns : none
Args : Bio::Map::MappableI object |
Title : each_element
Usage : my @elements = $map->each_element;
Function: Retrieves all the elements in a map
unordered
Returns : Array of Map elements (Bio::Map::MarkerI) Args : |
Methods code
sub species
{ my ($self) = @_;
$self->throw_not_implemented(); } |
sub units
{ my ($self) = @_;
$self->throw_not_implemented(); } |
sub type
{ my ($self) = @_;
$self->throw_not_implemented(); } |
sub name
{ my ($self) = @_;
$self->throw_not_implemented(); } |
sub length
{ my ($self) = @_;
$self->throw_not_implemented(); } |
sub unique_id
{ my ($self,$id) = @_;
$self->throw_not_implemented(); } |
sub add_element
{ my ($self) = @_;
$self->throw_not_implemented(); } |
sub each_element
{ my ($self) = @_;
$self->throw_not_implemented(); } |
General documentation
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to
the Bioperl mailing list. Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://bioperl.org/MailList.shtml - About the mailing lists
Report bugs to the Bioperl bug tracking system to help us keep track
of the bugs and their resolution. Bug reports can be submitted via
email or the web:
bioperl-bugs@bioperl.org
http://bugzilla.bioperl.org/
| AUTHOR - Jason Stajich | Top |
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _