G::IO Bioperl
SummaryPackage variablesSynopsisDescriptionGeneral documentationMethods
Summary
    G::IO::Bioperl
Package variables
No package variables defined.
Included modules
G::Skyline
strict
Synopsis
    use G::IO::Bioperl;
    $gb = G::IO::Bioperl::convert($bioperl);
Description
    This class is intended to be called internally.
Methods
BEGIN Code
convert
No description
Code
Methods description
None available.
Methods code
BEGINTop
BEGIN {
    eval "use Bio::Perl;";
    if ($@) { warn "$@" };
}
convertdescriptionprevnextTop
sub convert {
    my $bpobj = shift;

    my $tmpname = "G-INTERNAL-" . $ENV{USER} . time() . rand();
    write_sequence(">/tmp/$tmpname.gbk", "genbank", $bpobj);

    my $this = new G::Skyline("/tmp/$tmpname.gbk", "no msg");
    unlink("/tmp/$tmpname.gbk");

    return $this;
}
General documentation
AUTHORTop
Kazuharu Arakawa, gaou@sfc.keio.ac.jp
SEE ALSOTop
perl(1).