Bio::EnsEMBL::ExternalData::Expression SeqTag
SummaryIncluded librariesPackage variablesSynopsisDescriptionGeneral documentationMethods
Toolbar
WebCvsRaw content
Summary
Bio::EnsEMBL::ExternalData::Expression::SeqTag
Package variables
No package variables defined.
Included modules
Bio::DBLinkContainerI
Inherit
Bio::DBLinkContainerI
Synopsis
    @contig = $db->get_Contigs();
$clone = $db->get_Clone(); @genes = $clone->get_all_Genes();
Description
Represents information on one Clone
Methods
_set_from_args
No description
Code
adaptorDescriptionCode
add_DBLinkDescriptionCode
each_DBLinkDescriptionCode
frequencyDescriptionCode
idDescriptionCode
nameDescriptionCode
newDescriptionCode
relative_frequencyDescriptionCode
sourceDescriptionCode
Methods description
adaptorcode    nextTop
 Title   : adaptor
Usage : $obj->adaptor($newval)
Function:
Example :
Returns : value of adaptor
Args : newvalue (optional)
add_DBLinkcodeprevnextTop
 Title   : add_DBLink
Usage : $self->add_DBLink($ref)
Function: adds a link object
Example :
Returns :
Args :
each_DBLinkcodeprevnextTop
 Title   : each_DBLink
Usage : foreach $ref ( $self->each_DBlink() )
Function: gets an array of DBlink of objects
Example :
Returns :
Args :
frequencycodeprevnextTop
 Title   : frequency
Usage : $obj->frequency($newval)
Function:
Example :
Returns : value of frequency
Args : newvalue (optional)
idcodeprevnextTop
 Title   : id
Usage : $obj->id($newval)
Function:
Example :
Returns : value of tag id
Args : newvalue (optional)
namecodeprevnextTop
 Title   : name
Usage : $obj->name($newval)
Function:
Example :
Returns : value of name
Args : newvalue (optional)
newcodeprevnextTop
 Title   : new
Usage :
Function:
Example :
Returns : SeqTag object
Args :
relative_frequencycodeprevnextTop
 Title   : relative_frequency
Usage : $obj->realtive_frequency($newval)
Function:
Example :
Returns : value of realtive_frequency
Args : newvalue (optional)
sourcecodeprevnextTop
 Title   : source
Usage : $obj->source($newval)
Function:
Example :
Returns : value of source
Args : newvalue (optional)
Methods code
_set_from_argsdescriptionprevnextTop
sub _set_from_args {
    my ($self,@args)=@_;

    my ($id,$source,$name,$frequency,$relative_frequency)=@args;

    $self->id($id);
    $self->source($source);
    $self->name($name);
    $self->frequency($frequency);
    $self->relative_frequency($relative_frequency);
}
adaptordescriptionprevnextTop
sub adaptor {
   my ($obj,$value) = @_;
   if( defined $value) {
      $obj->{'adaptor'} = $value;
    }
    return $obj->{'adaptor'};
}
add_DBLinkdescriptionprevnextTop
sub add_DBLink {
   my ($self,$com) = @_;
   if( ! $com->isa('Bio::Annotation::DBLink') ) {
       $self->throw("Is not a link object but a  [$com]");
   }
   push(@{$self->{'link'}},$com);
}
each_DBLinkdescriptionprevnextTop
sub each_DBLink {
   my ($self) = @_;

   return @{$self->{'link'}} if defined $self->{'link'};
}
frequencydescriptionprevnextTop
sub frequency {
   my ($obj,$value) = @_;
   if( defined $value) {
      $obj->{'_frequency'} = $value;
    }
    return $obj->{'_frequency'};
}
iddescriptionprevnextTop
sub id {
   my ($obj,$value) = @_;
   if( defined $value) {
      $obj->{'_id'} = $value;
    }
    return $obj->{'_id'};
}
namedescriptionprevnextTop
sub name {
   my ($obj,$value) = @_;
   if( defined $value) {
      $obj->{'_name'} = $value;
    }
    return $obj->{'_name'};
}
newdescriptionprevnextTop
sub new {
    my ($class,$adaptor,@args) = @_;

    my $self = {};
    bless $self,$class;

    $self->adaptor($adaptor);
    $self->_set_from_args(@args);

    return $self;
}
relative_frequencydescriptionprevnextTop
sub relative_frequency {
   my ($obj,$value) = @_;
   if( defined $value) {
      $obj->{'_relative_frequency'} = $value;
    }
    return $obj->{'_relative_frequency'};
}
sourcedescriptionprevnextTop
sub source {
   my ($obj,$value) = @_;
   if( defined $value) {
      $obj->{'_source'} = $value;
    }
    return $obj->{'_source'};
}
General documentation
CONTACTTop
Describe contact details here
APPENDIXTop
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _