Help for this page

Select Code to Download


  1. or download this
    my $lookup = '';
    while( <SMALLFILE> ) {
    ...
        chomp;
        print if $lookup{$_};
    }
    
  2. or download this
    my %acgt = (
       A => '00',
    ...
        chomp;
        print if $lookup{encode($_)};
    }