Bio::SearchIO
chado
Toolbar
Summary
Bio::SearchIO::chado - chado sequence input/output stream
Package variables
No package variables defined.
Included modules
Inherit
Synopsis
It is probably best not to use this object directly, but
rather go through the SearchIO handler system. Go:
$stream = Bio::SearchIO->new(-file => $filename, -format => 'chado');
while ( my $seq = $stream->next_seq() ) {
# do something with $seq
}
Description
This object can transform Bio::Seq objects to and from chado flat
file databases. CURRENTLY ONLY TO
_show_dna()
(output only) shows the dna or not
_post_sort()
(output only) provides a sorting func which is applied to the FTHelpers
before printing
Methods
DESTROY | No description | Code |
_initialize | No description | Code |
default_handler_class | No description | Code |
end_of_data | No description | Code |
write_hit | No description | Code |
write_hsp | No description | Code |
write_result | Description | Code |
Methods description
Title : write_result Usage : $stream->write_result($result) Function: writes the $result object (must be result) to the stream Returns : 1 for success and 0 for error Args : Bio::Result |
Methods code
sub DESTROY
{ my $self = shift;
$self->end_of_data();
$self->SUPER::DESTROY(); } |
sub _initialize
{ my($self,@args) = @_;
$self->SUPER::_initialize(@args);
my $wclass = $self->default_handler_class;
$self->handler($wclass->new);
$self->{_end_of_data} = 0;
$self->handler->S("chado");
return; } |
sub default_handler_class
{ return "Data::Stag::BaseHandler"; } |
sub end_of_data
{ my $self = shift;
$self->{_end_of_data} = 1;
$self->handler->E("chado"); } |
sub write_hit
{ my $self = shift;
my $hit = shift;
my $cid = shift;
my $w = $self->handler;
my $hit_id = $self->get_temp_uid($hit);
my $fnode =
[feature=> [
[feature_id=>$hit_id],
[name=>$hit->name],
[typename=>"hit"],
[analysisfeature=>[
[rawscore=>$hit->raw_score],
[significance=>$hit->significance],
[analysis_id=>$cid]]]]];
$w->ev(@$fnode);
foreach my $hsp ( $hit->hsps) {
$self->write_hsp($hsp, $hit_id);
}
return 1; } |
sub write_hsp
{ my $self = shift;
my $hsp = shift;
my $hid = shift;
my $w = $self->handler;
my $hsp_id = $self->get_temp_uid($hsp);
my $order = 0;
my @lnodes =
map {
my ($nbeg, $nend, $strand) =
$self->bp2ib([$hsp->start($_),
$hsp->end($_),
$hsp->strand($_)
]);
my $src = $_ eq 'query' ? $hsp->query->seq_id : $hsp->hit->seq_id;
[featureloc=>[
[nbeg=>$nbeg],
[nend=>$nend],
[strand=>$strand],
[srcfeature=>$src],
[group=>0],
[order=>$order++],
]
]
} qw(query subject);
my $fnode =
[feature => [
[feature_id=>$hsp_id],
[typename=>"hsp"],
[analysisfeature=>[
[rawscore=>$hsp->score],
[significance=>$hsp->significance],
]
],
@lnodes,
]
];
$w->ev(@$fnode);
$w->ev(feature_relationship=>[
[subjfeature_id=>$hsp_id],
[objfeature_id=>$hid]
]
);
return 1;
}
1; } |
sub write_result
{ my ($self,$result) = @_;
if( !defined $result ) {
$self->throw("Attempting to write with no result!");
}
my $w = $self->handler;
$w->S("result");
my @stats =
(map {
[analysisprop=>[
[pkey=>$_],
[pval=>$result->get_statistic($_)]]]
} $result->available_statistics);
my @params =
(map {
[analysisprop=>[
[pkey=>$_],
[pval=>$result->get_parameter($_)]]]
} $result->available_parameters);
my $cid = $self->get_temp_uid($result);
$w->ev(companalysis=>[
[companalysis_id=>$cid],
[datasource=>$result->database_name],
@stats,
@params,
]
);
while( my $hit = $result->next_hit ) {
$self->write_hit($hit, $cid);
}
$w->E("result");
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 one of the Bioperl mailing lists.
Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://www.bioperl.org/MailList.shtml - 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://bio.perl.org/bioperl-bugs/
AUTHOR - Chris Mungall | Top |
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _