Help for this page

Select Code to Download


  1. or download this
    # Iterate through all of the genes on a clone
    foreach my $gene ( @{ $first_clone->get_all_Genes() } ) {
        print $gene->stable_id(), "\n";
        undef $gene; ## Free the gene object and the memory it uses.
    }