Bio::Map
Gene
Toolbar
Summary
Bio::Map::Gene - An gene modelled as a mappable element.
Package variables
No package variables defined.
Included modules
Inherit
Synopsis
use Bio::Map::Gene;
my $gene = Bio::Map::Gene->get(-universal_name => 'BRCA2',
-description => 'breast cancer 2, early onset');
# Normally you get Gene objects from GeneMaps
use Bio::Map::GeneMap;
# Model a gene with its orthologous versions found in different species,
# but at abstract locations within each genome
my $map1 = Bio::Map::GeneMap->get(-universal_name => 'BRCA2', -species => $human);
my $map2 = Bio::Map::GeneMap->get(-universal_name => 'BRCA2', -species => $mouse);
$gene = $map1->gene;
# Genes can have special kinds of positions (Bio::Map::GenePosition) that
# define where various sub-regions of the gene are, relative to one of the
# normal Positions the gene has placing it on a map.
my $trans = Bio::Map::GenePosition->new(-start => 0, -length => 700,
-map => $map1, -type => 'transcript');
$gene->add_transcript_position($trans);
my $exon = Bio::Map::GenePosition->new(-start => 0, -length => 100,
-map => $map1, -type => 'exon');
$gene->add_exon_position($exon, 1);
# (so now the gene has 1 transcript 700bp long which starts at the beginning
# of the gene, and we've defined the first of many exons which starts at the
# start of the transcript and is 100bp long)
Description
Model a gene as an abstract mappable element. This is for when you don't care
exactly where a gene is in a genome, but just want to model other things (like
transcription factor binding sites) that are near it so you can answer questions
like "what binds near this gene?", or "which genes does this bind near?".
See t/Map/Map.t for more example usage.
Methods
Methods description
Title : new Usage : my $gene = Bio::Map::Gene->new(); Function: Builds a new Bio::Map::Gene object Returns : Bio::Map::Gene Args : -universal_name => string : name of the gene (in a form common to all species that have the gene, but unique amongst non-orthologous genes), REQUIRED -description => string : free text description of the gene |
Title : get Usage : my $gene = Bio::Map::Gene->get(); Function: Builds a new Bio::Map::Gene object (like new()), or gets a pre-existing one that shares the same universal_name. Returns : Bio::Map::Gene Args : -universal_name => string, name of the gene (in a form common to all species that have the gene, but unique amongst non-orthologous genes), REQUIRED -description => string, free text description of the gene |
Title : universal_name Usage : my $name = $gene->universal_name Function: Get/Set Mappable name, corresponding to the name of the gene in a form shared by orthologous versions of the gene in different species, but otherwise unique. Returns : string Args : none to get, OR string to set |
Title : description Usage : my $description = $gene->description(); $gene->description($description); Function: Get/set information relating to the gene, in this case the description (eg. 'full name of gene') Returns : string (empty string if not defined) Args : none to get general version, OR Bio::Map::GeneMap to get map-specific version. string to set general version, optionally AND Bio::Map::GeneMap to set map-specific version |
Title : display_id Usage : my $display_id = $gene->display_id(); $gene->display_id($display_id); Function: Get/set information relating to the gene, in this case the display_id (eg. 'ENSG00000155287') Returns : string (empty string if not defined) Args : none to get general version, OR Bio::Map::GeneMap to get map-specific version. string to set general version, optionally AND Bio::Map::GeneMap to set map-specific version |
Title : display_xref Usage : my $display_xref = $gene->display_xref(); $gene->display_xref($display_xref); Function: Get/set information relating to the gene, in this case the display_xref (eg. 'HUGO:23472'). Returns : string (empty string if not defined) Args : none to get general version, OR Bio::Map::GeneMap to get map-specific version. string to set general version, optionally AND Bio::Map::GeneMap to set map-specific version |
Title : external_db Usage : my $external_db = $gene->external_db(); $gene->external_db($external_db); Function: Get/set information relating to the gene, in this case the external_db (eg. 'HUGO'). Returns : string (empty string if not defined) Args : none to get general version, OR Bio::Map::GeneMap to get map-specific version. string to set general version, optionally AND Bio::Map::GeneMap to set map-specific version |
Title : external_name Usage : my $external_name = $gene->external_name(); $gene->external_name($external_name); Function: Get/set information relating to the gene, in this case the (eg. 'gene_name', probably the same as or similar to what you set universal_name() to, but could be a species-specific alternative). Returns : string (empty string if not defined) Args : none to get general version, OR Bio::Map::GeneMap to get map-specific version. string to set general version, optionally AND Bio::Map::GeneMap to set map-specific version |
Title : biotype Usage : my $biotype = $gene->biotype(); $gene->biotype($biotype); Function: Get/set information relating to the gene, in this case the biotype (eg. 'protein_coding'). Returns : string (empty string if not defined) Args : none to get general version, OR Bio::Map::GeneMap to get map-specific version. string to set general version, optionally AND Bio::Map::GeneMap to set map-specific version |
Title : source Usage : my $source = $gene->source(); $gene->source($source); Function: Get/set information relating to the gene, in this case the source (eg. '??'). Returns : string (empty string if not defined) Args : none to get general version, OR Bio::Map::GeneMap to get map-specific version. string to set general version, optionally AND Bio::Map::GeneMap to set map-specific version |
Title : position Usage : my $position = $mappable->position($map); Function: Get the main Position of this Mappable on a given map. (A gene may have many positions on a map, but all but one of them are Bio::Map::GenePosition objects that describe sub-regions of the gene which are relative to the 'main' Bio::Map::Position position, which is the only one that is directly relative to the map - this is the Position returned by this method.) Returns : Bio::Map::Position Args : Bio::Map::MapI object. |
Title : add_transcript_position Usage : $gene->add_transcript_position($position); Function: Set the bounds of a transcript on a map (that of the supplied position). All transcript positions added this way must have coordinates relative to the main position of the 'gene' mappable on this transcript's map. The first position added using this method must have a start of 0. The supplied Position will be given a type of 'transcript' and relative of (gene => 0). The active_transcript for the Position's map will be set to this one. Returns : n/a Args : Bio::Map::GenePosition (which must have its map() defined, and be for a map this gene is on) |
Title : active_transcript Usage : my $active = $gene->active_transcript($map); $gene->active_transcript($map, $int); Function: Get/set the active transcript number (an int of 1 would mean the 1st transcript position added to the object for the given map, ie. would correspond to the the 1st Position object in the list returned by get_transcript_positions($map)). The active transcript is the one considered by other methods and objects when dealing with positions relative to 'the' transcript. Returns : int, 0 means there were no transcript positions on the given map, undef is some other problem Args : Just Bio::Map::GeneMap to get Bio::Map::GeneMap AND int to set |
Title : get_transcript_positions Usage : my @transcript_positions = $gene->get_transcript_positions($map); Function: Get all the transcript positions of this gene on the given map, in the order they were added to the map. Returns : list of Bio::Map::GenePosition Args : Bio::Map::GeneMap |
Title : get_transcript_position Usage : my $position = $gene->get_transcript_position($map, $int); Function: Get the $int'th transcript position added to the map. If no transcripts have been added to the map, and the default transcript was requested, $gene->position is returned, as that will have the same start and end as the first transcript. Returns : Bio::Map::GenePosition Args : Bio::Map::GeneMap AND int (if int not supplied, or 0, returns the currently active transcript position) |
Title : coding_position Usage : $gene->coding_position($position, $transcript_number); $gene->coding_position($map, $transcript_number); Function: Get/set the bounds of a coding region of a given transcript on a map (that of the supplied position).
When setting, coordinates must be relative to the transcript start.
The supplied position will be given a type 'coding' and a relative
(-transcript => $transcript_number). There can be only one coding
position per transcript (hence this is a get/set).
When getting, if a coding region has not been defined for the
requested transcript, $gene->get_transcript_position($map,
$transcript_number) is returned, as if assuming the entirety of the
transcript is coding.
Returns : Bio::Map::GenePosition
Args : Bio::Map::GeneMap AND int (the transcript number) to get, OR to set:
Bio::Map::GenePosition (which must have its map() defined, and be for
a map this gene is on) AND int (the transcript number)
In both cases, if transcript number not supplied or 0 this will be
resolved to the current active transcript number - there must be at
least one transcript on the map |
Title : add_exon_position Usage : $gene->add_exon_position($position, $transcript_number); Function: Set the bounds of an exon of a given transcript on a map (that of the supplied position). Coordinates must be relative to the transcript start. The supplied position will be given a type 'exon' and a relative (-transcript => $transcript_number). Returns : n/a Args : Bio::Map::GenePosition (which must have its map() defined, and be for a map this gene is on) AND int (the transcript number; if not supplied or 0 this will be resolved to the current active transcript number - there must be at least one transcript on the map) |
Title : get_exon_positions Usage : my @positions = $gene->get_exon_positions($map, $int); Function: Get all the exon positions that are relative to the $int'th transcript position added to the map. Exons are returned sorted by their start positions. Returns : array of Bio::Map::GenePosition Args : Bio::Map::GeneMap AND int (the transcript number; if second int not supplied, or 0, considers the currently active transcript) |
Title : get_exon_position Usage : my $position = $gene->get_exon_position($map, $exon_num, $int); Function: Get the $exon_num'th exon position that is relative to the $int'th transcript position added to the map. Exons are numbered in Position order, not the order they were added to the map. If no exons have been added to the map, and the first exon was requested, $gene->get_transcript_position($map, $int) is returned, as that will have the same start as the first exon, and could have the same end for a single exon gene. Returns : Bio::Map::GenePosition Args : Bio::Map::GeneMap AND int (the exon you want) AND int (the transcript number; if second int not supplied, or 0, considers the currently active transcript) |
Title : add_intron_position Usage : $gene->add_intron_position($position, $transcript_number); Function: Set the bounds of an intron of a given transcript on a map (that of the supplied position). Coordinates must be relative to the transcript start. The supplied position will be given a type 'intron' and a relative (-transcript => $transcript_number). Returns : n/a Args : Bio::Map::GenePosition (which must have its map() defined, and be for a map this gene is on) AND int (the transcript number; if not supplied or 0 this will be resolved to the current active transcript number - there must be at least one transcript on the map) |
Title : get_intron_positions Usage : my @positions = $gene->get_intron_positions($map, $int); Function: Get all the intron positions that are relative to the $int'th transcript position added to the map. Introns are returned sorted by their start positions. Returns : array of Bio::Map::GenePosition Args : Bio::Map::GeneMap AND int (the transcript number; if second int not supplied, or 0, considers the currently active transcript) |
Title : get_intron_position Usage : my $position = $gene->get_intron_position($map, $intron_num, $int); Function: Get the $intron_num'th intron position that is relative to the $int'th transcript position added to the map. Introns are numbered in Position order, not the order they were added to the map. Returns : Bio::Map::GenePosition Args : Bio::Map::GeneMap AND int (the intron you want) AND int (the transcript number; if second int not supplied, or 0, considers the currently active transcript) |
Title : set_from_db Usage : $gene->set_from_db(); # for an instance only Bio::Map::Gene->set_from_db(); # decide that all future genes added # to maps will be set from db Function: Creates all the various types of positions (transcripts, coding, exons, introns) for this gene on all its maps. The information comes from an Ensembl database via Bio::Tools::Run::Ensembl. NB: will purge any existing Bio::Map::GenePosition objects that were previously on the maps this gene is one. Returns : undef on failure, otherwise the number of maps that successfully had positions added to them Args : boolean (no argument/undef is treated as 1, ie. do set from db; supply 0 to turn off)
NB: Bio::Tools::Run::Ensembl is available in the bioperl-run package;
see it for details on setting up a database to use.
Once set, any new maps (species) this gene is added to will
automatically also have their positions set_from_db |
Methods code
BEGIN { eval {require Bio::Tools::Run::Ensembl;};
$USE_ENSEMBL = ! $@; } |
sub new
{ my ($class, @args) = @_;
my $self = $class->SUPER::new(@args);
my ($u_name, $desc) = $self->_rearrange([qw(UNIVERSAL_NAME DESCRIPTION)], @args);
$u_name || $self->throw("You must supply a -universal_name");
$self->universal_name($u_name);
defined $desc && $self->description($desc);
return $self;} |
sub get
{ my ($class, @args) = @_;
my ($u_name, $desc) = Bio::Root::Root->_rearrange([qw(UNIVERSAL_NAME DESCRIPTION)], @args);
if ($u_name && defined $GENES->{$u_name}) {
$GENES->{$u_name}->description($desc) if $desc;
return $GENES->{$u_name};
}
return $class->new(@args);} |
sub universal_name
{ my ($self, $value) = @_;
if (defined $value) {
delete $GENES->{$self->{'_uname'}} if $self->{'_uname'};
$self->{'_uname'} = $value;
$GENES->{$value} = $self;
}
return $self->{'_uname'};} |
sub description
{ my $self = shift;
return $self->_gene_data('description', @_);} |
sub display_id
{ my $self = shift;
return $self->_gene_data('display_id', @_);} |
sub display_xref
{ my $self = shift;
return $self->_gene_data('display_xref', @_);} |
sub external_db
{ my $self = shift;
return $self->_gene_data('external_db', @_);} |
sub external_name
{ my $self = shift;
return $self->_gene_data('external_name', @_);} |
sub biotype
{ my $self = shift;
return $self->_gene_data('biotype', @_);} |
sub source
{ my $self = shift;
return $self->_gene_data('source', @_);} |
sub position
{ my ($self, $map) = @_;
($map && $self->in_map($map)) || return;
foreach my $pos ($self->get_positions($map, 1)) {
next if $pos->isa('Bio::Map::GenePosition');
return $pos;
}} |
sub add_transcript_position
{ my ($self, $pos) = @_;
($pos && $pos->isa('Bio::Map::GenePosition')) || return;
my $map = $pos->map || $self->throw("Supplied GenePosition has no map");
$self->in_map($map) || $self->throw("Supplied GenePosition is not on a map that this gene belong to");
my @transcripts = $self->get_transcript_positions($map);
if (@transcripts == 0) {
if ($pos->start != 0) {
$self->warn("The first transcript position added to a map needs a start of 0, not adding");
return;
}
}
$pos->type('transcript');
$pos->relative->gene(0);
$self->SUPER::add_position($pos);
push(@{$self->{t_order}->{$map}}, $pos);
my $main_pos = $self->position($map);
my $increase = ($pos->length + $pos->start($pos->absolute_relative)) - ($main_pos->end + 1);
if ($increase > 0) {
$main_pos->end($main_pos->end + $increase);
}
$self->active_transcript($map, scalar(@transcripts) + 1);} |
sub active_transcript
{ my ($self, $map, $int) = @_;
$map or return;
my @transcripts = $self->get_transcript_positions($map);
if (@transcripts > 0) {
if (defined($int)) {
if ($int > 0 && $int <= @transcripts) {
$self->{active_transcript}->{$map} = $int;
return $int;
}
else {
$self->warn("Supplied int '$int' not a good number (higher than the number of transcripts on the map?)");
return;
}
}
else {
if (defined $self->{active_transcript}->{$map}) {
return $self->{active_transcript}->{$map};
}
else {
$self->{active_transcript}->{$map} = @transcripts;
return $self->{active_transcript}->{$map};
}
}
}
return 0;} |
sub get_transcript_positions
{ my ($self, $map) = @_;
$map or return;
$map->isa('Bio::Map::GeneMap') or return;
return $self->_get_typed_positions($map, 'transcript');} |
sub get_transcript_position
{ my ($self, $map, $value) = @_;
$map or return;
$value ||= $self->active_transcript($map);
my @transcripts = $self->get_transcript_positions($map);
if (@transcripts == 0 && $value == 0) {
return $self->position($map);
}
return $self->_get_list_element($value, @transcripts);} |
sub coding_position
{ my ($self, $thing, $transcript_num) = @_;
ref($thing) || return;
$transcript_num ||= 0;
if ($thing->isa('Bio::Map::PositionI')) {
my $map = $thing->map || return;
my ($existing_pos) = $self->_get_typed_positions($map, 'coding', $transcript_num);
if ($existing_pos) {
$self->purge_positions($existing_pos);
}
$self->_add_type_position('coding', $thing, $transcript_num);
$thing = $map;
}
my ($pos) = $self->_get_typed_positions($thing, 'coding', $transcript_num);
return $pos || $self->get_transcript_position($thing, $transcript_num);} |
sub add_exon_position
{ my $self = shift;
$self->_add_type_position('exon', @_);} |
sub get_exon_positions
{ my ($self, $map, $value) = @_;
$map || return;
$value ||= 0;
return $self->_get_typed_positions($map, 'exon', $value);} |
sub get_exon_position
{ my ($self, $map, $exon_num, $value) = @_;
my @exons = $self->get_exon_positions($map, $value);
if (@exons == 0 && $exon_num == 1) {
return $self->get_transcript_position($map, $value);
}
return $self->_get_list_element($exon_num, @exons);} |
sub add_intron_position
{ my $self = shift;
$self->_add_type_position('intron', @_);} |
sub get_intron_positions
{ my ($self, $map, $value) = @_;
$map || return;
$value ||= 0;
return $self->_get_typed_positions($map, 'intron', $value);} |
sub get_intron_position
{ my ($self, $map, $intron_num, $value) = @_;
my @introns = $self->get_intron_positions($map, $value);
return $self->_get_list_element($intron_num, @introns);} |
sub set_from_db
{ my ($self, $bool) = @_;
return unless $USE_ENSEMBL;
return unless Bio::Tools::Run::Ensembl->registry_setup();
defined($bool) || ($bool = 1);
unless (ref($self)) {
$SET_FROM_DB = $bool;
return 0;
}
$self->{_set_from_db} = $bool;
my $success = 0;
foreach my $map ($self->known_maps) {
$success += $self->_set_from_db($map);
}
return $success;
}
} |
sub _set_from_db
{ my ($self, $map) = @_;
my $gene_name = $self->universal_name || return 0;
$SET_FROM_DB || $self->{_set_from_db} || return;
my $species = $map->species;
my $slice_adaptor = Bio::Tools::Run::Ensembl->get_adaptor($species, 'Slice') || return 0;
my $gene = Bio::Tools::Run::Ensembl->get_gene_by_name(-species => $species,
-name => $gene_name,
-use_orthologues => 'Homo sapiens',
-use_swiss_lookup => 1,
-use_entrez_lookup => 1) || return 0;
$self->description($gene->description, $map);
$self->display_id($gene->display_id, $map);
$self->display_xref($gene->display_xref->display_id, $map);
$self->external_db($gene->external_db, $map);
$self->external_name($gene->external_name, $map);
$self->biotype($gene->biotype, $map);
$self->source($gene->source, $map);
my $trans_ref = $gene->get_all_Transcripts;
unless ($trans_ref && @{$trans_ref} > 0) {
return 0;
}
my $handler = $map->get_position_handler();
foreach my $pos ($map->get_positions) {
if ($pos->isa('Bio::Map::GenePosition')) {
$handler->purge_positions($pos);
}
}
my $strand = ${$trans_ref}[0]->strand;
my @transcripts = sort { $strand == -1 ? ($b->end <=> $a->end) : ($a->start <=> $b->start) } @{$trans_ref};
my $primary_slice = $slice_adaptor->fetch_by_transcript_stable_id($transcripts[0]->stable_id, 0);
my $uid = $map->unique_id;
@{$self->{_ensembl}->{$uid}} = ($slice_adaptor, $primary_slice, $strand);
my $adjust = $strand == -1 ? $transcripts[0]->end : $transcripts[0]->start;
my $orig_adjust = $adjust;
my $adjustment = sub { return $strand == -1 ? $adjust - shift() : shift() - $adjust; };
my $longest_trans = 0;
my $longest = 1;
my $count = 1;
foreach my $transcript (@transcripts) {
my $length = $transcript->length();
if ($length > $longest_trans) {
$longest_trans = $length;
$longest = $count;
}
my $slice = $slice_adaptor->fetch_by_transcript_stable_id($transcript->stable_id, 0);
my $start = &$adjustment($slice->start());
my $end = &$adjustment($slice->end());
($start, $end) = ($end, $start) if $start > $end;
my $trans_pos = Bio::Map::GenePosition->new(-map => $map, -start => $start, -end => $end, -type => 'transcript');
$self->add_transcript_position($trans_pos);
$adjust = $strand == -1 ? $slice->end : $slice->start;
if (defined($transcript->coding_region_start)) {
my $atg = &$adjustment($transcript->coding_region_start());
my $stop = &$adjustment($transcript->coding_region_end());
($atg, $stop) = ($stop, $atg) if $atg > $stop;
my $cod_pos = Bio::Map::GenePosition->new(-map => $map, -start => $atg, -end => $stop, -type => 'coding');
$self->coding_position($cod_pos);
}
foreach my $exon (@{$transcript->get_all_Exons}) {
my $start = &$adjustment($exon->start());
my $end = &$adjustment($exon->end());
($start, $end) = ($end, $start) if $start > $end;
my $throw_species = ref($species) ? $species->scientific_name : $species;
defined($end) || $self->throw("gene $gene_name in species $throw_species (".$gene->display_id.") had exon $start with no end");
my $pos = Bio::Map::GenePosition->new(-map => $map, -start => $start, -end => $end, -type => 'exon');
$self->add_exon_position($pos);
}
foreach my $intron (@{$transcript->get_all_Introns}) {
my $start = &$adjustment($intron->start());
my $end = &$adjustment($intron->end());
($start, $end) = ($end, $start) if $start > $end;
my $pos = Bio::Map::GenePosition->new(-map => $map, -start => $start, -end => $end, -type => 'intron');
$self->add_intron_position($pos);
}
$adjust = $orig_adjust;
} continue { $count++ };
$self->active_transcript($map, $longest);
return 1;
}
} |
sub _get_typed_positions
{ my ($self, $map, $type, $transcript_number) = @_;
if (defined $transcript_number && $transcript_number == 0) {
$transcript_number = $self->active_transcript($map);
}
my @positions;
foreach my $pos ($self->get_positions($map, 1)) {
$pos->isa('Bio::Map::GenePosition') || next;
$pos->type eq $type || next;
if (defined $transcript_number) {
my $rel = $pos->relative || next;
$rel->type eq 'transcript' || next;
my $rel_transcript_num = $rel->transcript || $self->active_transcript($map);
$rel_transcript_num == $transcript_number || next;
}
push(@positions, $pos);
}
if (defined $transcript_number) {
my @sort = map { $_->[1] }
sort { $a->[0] <=> $b->[0] }
map { [$_->start($_->relative), $_] }
@positions;
return @sort;
}
else {
my @known_order = @{$self->{t_order}->{$map} || []};
@known_order || return;
return @known_order if @known_order == @positions; my %exists = map { $_ => $_ } @positions;
my @new_order;
foreach my $pos (@known_order) {
exists $exists{$pos} || next;
push(@new_order, $pos);
}
@{$self->{t_order}->{$map}} = @new_order;
return @new_order;
}
}
} |
sub _get_list_element
{ my ($self, $wanted, @list) = @_;
($wanted && $wanted > 0) || return;
@list > 0 || return;
my $index = $wanted - 1;
if ($index >= 0 && $index <= $#list) {
return $list[$index];
}
return;
}
} |
sub _add_type_position
{ my ($self, $type, $pos, $transcript_num) = @_;
($pos && $pos->isa('Bio::Map::GenePosition')) || return;
my $map = $pos->map || $self->throw("Supplied GenePosition has no map");
$self->in_map($map) || $self->throw("Supplied GenePosition is not on a map that this gene belong to");
$transcript_num ||= $self->active_transcript($map) || $self->throw("Asked to be relative to the active transcript, but there is no transcript");
my $transcript_pos = $self->get_transcript_position($map, $transcript_num) || $self->throw("Asked to be relative to transcript $transcript_num, but there is no such transcript");
$transcript_pos->end || ($self->warn("no transcript pos end for pos for gene ".$self->universal_name." and species ".$pos->map->species."!") && exit);
$pos->end || ($self->warn("no pos end for pos for gene ".$self->universal_name." and species ".$pos->map->species."!") && exit);
unless ($transcript_pos->contains($pos)) {
$self->warn("$type coordinates must lie within those of the transcript, not adding $type");
return;
}
$pos->type($type);
$pos->relative->transcript($transcript_num);
$self->SUPER::add_position($pos);
}
} |
sub _gene_data
{ my ($self, $type, $thing, $map) = @_;
$thing or return ($self->{$type}->{general} || '');
if (ref($thing) && $thing->isa('Bio::Map::GeneMap')) {
return $self->{$type}->{$thing} || '';
}
if ($map && $map->isa('Bio::Map::GeneMap')) {
$self->{$type}->{$map} = $thing;
}
else {
$self->{$type}->{general} = $thing;
}
return $thing;
}
} |
sub _get_slice
{ my ($self, $map) = @_;
$map || return;
my $uid = $map->unique_id || return;
if (defined $self->{_ensembl}->{$uid}) {
return @{$self->{_ensembl}->{$uid}};
}
return;
}
1;} |
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/wiki/Mailing_lists - About the mailing lists
Please direct usage questions or support issues to the mailing list:
bioperl-l@bioperl.org
rather than to the module maintainer directly. Many experienced and
reponsive experts will be able look at the problem and quickly
address it. Please include a thorough description of the problem
with code and data examples if at all possible.
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 the
web:
https://redmine.open-bio.org/projects/bioperl/
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _