The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

    Bio::KEGG::ko- Perl module to fetch details of KEGG file 'ko'.

DESCRIPTION

    Fetch data from a Bio::KEGGI::ko object

AUTHOR

    Haizhou Liu, zeroliu-at-gmail-dot-com

VERSION

    0.1.5
    

METHODS

ec

    Name:   ec
    Disc:   Get KEGG entry ECs
    
        $ra_ecs = [ ec, ... ];
        
    Usage:  $o_kegg->ec()
    Args:
    Return: A reference to an array.
    

pathway

    Name:   pathway
    Disc:   Get KEGG entry PATHWAY ids
            
            $ra_pathways = [ pathway_id, ... ];
    
    Usage:  $o_kegg->pathway()
    Args:
    Return: A reference to an array.
    

gene

    Name:   gene
    Disc:   Get KEGG ko entry GENES information
        
        $rh_gene = [
            {
                'org'      => $org,
                'org_gene' => [
                    {
                        'entry' => $entry,
                        'name'  => $name,
                    },
                    ...
                ],
                ...
            };
            ...,
        ];
    
    Usage:  $o_kegg->gene()
    Args:
    Return: A reference to an array.