| Summary | Included libraries | Package variables | Synopsis | Description | General documentation | Methods |
use Bio::SearchIO; use Bio::SearchIO::Writer::HTMLResultWriter; my $in = new Bio::SearchIO(-format => 'blast', -file => shift @ARGV); my $writer = new Bio::SearchIO::Writer::HTMLResultWriter(); my $out = new Bio::SearchIO(-writer => $writer); $out->write_result($in->next_result);
| BEGIN | Code | |
| new | Description | Code |
| remote_database_url | Description | Code |
| to_string | Description | Code |
| end_report | Description | Code |
| id_parser | Description | Code |
| default_id_parser | Description | Code |
| MIN | No description | Code |
| MAX | No description | Code |
| footer | No description | Code |
| algorithm_reference | Description | Code |
| new | code | next | Top |
Title : new Usage : my $obj = new Bio::SearchIO::Writer::HTMLResultWriter(); Function: Builds a new Bio::SearchIO::Writer::HTMLResultWriter object Returns : Bio::SearchIO::Writer::HTMLResultWriter Args : |
| remote_database_url | code | prev | next | Top |
Title : remote_database_url
Usage : $obj->remote_database_url($type,$newval)
Function: This should return or set a string that contains a %s which can be
filled in with sprintf.
Returns : value of remote_database_url
Args : $type - 'PROTEIN' or 'P' for protein URLS
'NUCLEOTIDE' or 'N' for nucleotide URLS
$value - new value to set [optional] |
| to_string | code | prev | next | Top |
Purpose : Produces data for each Search::Result::ResultI in a string.
: This is an abstract method. For some useful implementations,
: see ResultTableWriter.pm, HitTableWriter.pm,
: and HSPTableWriter.pm.
Usage : print $writer->to_string( $result_obj, @args );
Argument : $result_obj = A Bio::Search::Result::ResultI object
: @args = any additional arguments used by your implementation.
Returns : String containing data for each search Result or any of its
: sub-objects (Hits and HSPs).
Throws : n/a |
| end_report | code | prev | next | Top |
Title : end_report
Usage : $self->end_report()
Function: The method to call when ending a report, this is
mostly for cleanup for formats which require you to
have something at the end of the document ( |