Bio::Tools
Eponine
Summary
Bio::Tools::Eponine - Results of one Eponine run
Package variables
No package variables defined.
Included modules
Inherit
Synopsis
use Bio::Tools::Eponine;
use strict;
my $seq = "/data/seq.fa";
my $threshold = "0.999";
my @params = ( -seq => $seq,
-threshold => $threshold);
my $factory = Bio::Tools::Run::Eponine->new(@params);
# run eponine against fasta
my $r = $factory->run_eponine($seq);
my $parser = Bio::Tools::Eponine->new($r);
while (my $feat = $parser->next_prediction){
#$feat contains array of SeqFeature
foreach my $orf($feat) {
print $orf->seq_id. "\n";
}
}
Description
Parser for Eponine, a probabilistic transcription start site detector
optimized for mammalian genomic sequence. This module inherits off
Bio::Tools::AnalysisResult and therefore implements
Bio::SeqAnalysisParserI (see
Bio::Tools::AnalysisResult and
Bio::SeqAnalysisParserI).
Methods
Methods description
Usage : $mzef->analysis_method();
Purpose : Inherited method. Overridden to ensure that the name matches
/mzef/i.
Returns : String
Argument : n/a |
Title : next_feature
Usage : while($gene = $mzef->next_feature()) {
# do something
}
Function: Returns the next gene structure prediction of the MZEF result
file. Call this method repeatedly until FALSE is returned.
The returned object is actually a SeqFeatureI implementing object.
This method is required for classes implementing the
SeqAnalysisParserI interface, and is merely an alias for
next_prediction() at present.
Note that with the present version of MZEF there will only be one
object returned, because MZEF does not predict individual genes
but just potential internal exons.
Example :
Returns : A Bio::Tools::Prediction::Gene object.
Args : |
Title : next_prediction
Usage : while($gene = $mzef->next_prediction()) {
# do something
}
Function: Returns the next gene structure prediction of the MZEF result
file. Call this method repeatedly until FALSE is returned.
Note that with the present version of MZEF there will only be one
object returned, because MZEF does not predict individual genes
but just potential internal exons.
Example :
Returns : A Bio::Tools::Prediction::Gene object.
Args : |
Title : _parse_predictions()
Usage : $obj->_parse_predictions()
Function: Parses the prediction section. Automatically called by
next_prediction() if not yet done.
Example :
Returns : |
Title : create_feature
Usage : obj->create_feature($feature)
Function: Returns an array of features
Returns : Returns an array of features
Args : none |
Title : _prediction()
Usage : $gene = $obj->_prediction()
Function: internal
Example :
Returns : |
Title : _predictions_parsed
Usage : $obj->_predictions_parsed
Function: internal
Example :
Returns : TRUE or FALSE |
Methods code
| _initialize_state | description | prev | next | Top |
sub _initialize_state
{ my($self,@args) = @_;
my $make = $self->SUPER::_initialize_state(@args);
$self->{'_preds_parsed'} = 0;
$self->{'_flist'} =[];} |
sub analysis_method
{ my ($self, $method) = @_;
if($method && ($method !~ /epo/i)) {
$self->throw("method $method not supported in " . ref($self));
}
return $self->SUPER::analysis_method($method); } |
sub next_feature
{ my ($self,@args) = @_;
return $self->next_prediction(@args);} |
sub next_prediction
{ my ($self) = @_;
my $gene;
$self->_parse_predictions() unless $self->_predictions_parsed();
return $self->_prediction();} |
sub _parse_predictions
{ my ($self) = @_;
while(defined($_ = $self->_readline())) {
if (! /^\#/){
my @element = split;
my (%feature);
$feature {name} = $element[0];
$feature {score} = $element[5];
$feature {start} = $element[3];
$feature {end} = $element[4];
$feature {strand} = $element[6];
$feature {source}= 'Eponine';
$feature {primary}= 'TSS';
$feature {program} = 'eponine-scan';
$feature {program_version} = '2';
$self->create_feature(\%feature);
next;
}
}
$self->_predictions_parsed(1);} |
sub create_feature
{ my ($self, $feat) = @_;
my $tss = Bio::SeqFeature::Generic->new
( -seq_id => $feat->{'name'},
-start => $feat->{'start'},
-end => $feat->{'end'},
-strand => $feat->{'strand'},
-score => $feat->{'score'},
-source_tag => $feat->{'source'},
-primary_tag => $feat->{'primary'});
if ($tss) {
push(@{$self->{'_flist'}}, $tss);
}
} |
sub _prediction
{ my ($self) = @_;
return undef unless(exists($self->{'_flist'}) && @{$self->{'_flist'}});
return shift(@{$self->{'_flist'}});} |
sub _predictions_parsed
{ my ($self, $val) = @_;
$self->{'_preds_parsed'} = $val if $val;
if(! exists($self->{'_preds_parsed'})) {
$self->{'_preds_parsed'} = 0;
}
return $self->{'_preds_parsed'};} |
General documentation
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to one
of the Bioperl mailing lists. Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://bio.perl.org/MailList.html - About the mailing lists
Report bugs to the Bioperl bug tracking system to help us keep track
the bugs and their resolution. Bug reports can be submitted via email
or the web:
bioperl-bugs@bio.perl.org
http://bugzilla.bioperl.org/
Describe contact details here
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _