Bio::EnsEMBL::Pipeline::Finished HitDescription
Package variablesDescriptionGeneral documentationMethods
Toolbar
WebCvsRaw content
Package variables
No package variables defined.
Synopsis
No synopsis!
Description
The HitDescription object provides extra
information about database matches that is not
provided by the AlignFeature objects to which it
is attached.
Methods
db_name
No description
Code
description
No description
Code
hit_length
No description
Code
new
No description
Code
taxon_id
No description
Code
Methods description
None available.
Methods code
db_namedescriptionprevnextTop
sub db_name {
    my( $self, $db_name ) = @_;
    
    if ($db_name) {
        $self->{'_db_name'} = $db_name;
    }
    return $self->{'_db_name'};
}

1;

__END__
}
descriptiondescriptionprevnextTop
sub description {
    my( $self, $description ) = @_;
    
    if ($description) {
        $self->{'_description'} = $description;
    }
    return $self->{'_description'};
}
hit_lengthdescriptionprevnextTop
sub hit_length {
    my( $self, $hit_length ) = @_;
    
    if ($hit_length) {
        $self->{'_hit_length'} = $hit_length;
    }
    return $self->{'_hit_length'};
}
newdescriptionprevnextTop
sub new {
    return bless {}, shift;
}
taxon_iddescriptionprevnextTop
sub taxon_id {
    my( $self, $taxon_id ) = @_;
    
    if ($taxon_id) {
        $self->{'_taxon_id'} = $taxon_id;
    }
    return $self->{'_taxon_id'};
}
General documentation
NAME - Bio::EnsEMBL::Pipeline::Finished::HitDescriptionTop
MEHTODSTop
    hit_length
    The length of the entire hit sequence - not just
the region matched.
    description
    A one line description of the sequence.
    taxon_id
    The numeric NCBI taxonomy database ID for the
node (which is usually species).
    db_name
    The database which the hit belongs to.
AUTHOR(1)Top
James Gilbert email jgrg@sanger.ac.uk - original implementation
AUTHOR(2)Top
Mustapha Larbaoui email ml6@sanger.ac.uk - new pipeline