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() } ) {
        my $temp_obj_handle = $gene;
        print $temp_obj_handle->stable_id(), "\n";
    }
    
  2. or download this
    foreach my $gene ( @{ $first_clone->get_all_Genes() } ) {
        print $gene->stable_id(), "\n";
    }