BioPerl
view release on metacpan or search on metacpan
Bio/Event/EventHandlerI.pm view on Meta::CPAN
120121122123124125126127128129130131132133134135136137138139=head2 SAX methods
=cut
=head2 start_document
Title : start_document
Usage : $resultObj = $parser->start_document();
Function: Receive notification of the beginning of a document (the
input file of a parser). The parser will invoke this method
only once, before any other event callbacks.
Usually, a handler will reset any internal state structures
when this method is called.
Returns : none
Args : none
=cut
scripts/DB/bp_biofetch_genbank_proxy.pl view on Meta::CPAN
131415161718192021222324252627282930313233%MAPPING
= (
genbank
=> {
db
=>
'nucleotide'
,
rettype
=>
'gb'
},
genpep
=> {
db
=>
'protein'
,
rettype
=>
'gp'
});
# we're doing everything in callbacks, so initialize globals.
$BUFFER
=
''
;
%GOT
= ();
header(
'text/plain'
);
param() or print_usage();
my
$db
= param(
'db'
);
my
$style
= param(
'style'
);
my
$format
= param(
'format'
);
( run in 0.259 second using v1.01-cache-2.11-cpan-4e96b696675 )