Help for this page

Select Code to Download


  1. or download this
    my $gene_to_find = 'NP_012';
    my $matching_taxon;
    ...
    } else {
       print("Gene $gene_to_find not found in any taxon.\n");
    }
    
  2. or download this
    my $gene_to_find = 'NP_012';
    my @matching_taxons;
    ...
    } else {
       print("Gene $gene_to_find not found in any taxon.\n");
    }