Help for this page

Select Code to Download


  1. or download this
    Argument "A" isn't numeric in numeric eq (==)
    
  2. or download this
    use warnings;
    use strict;
    ...
    C  1    G
    T  1    A
    T  1    A
    
  3. or download this
    my %conv = (
        A => 'T',
    ...
        my $len = length($letter);
        print "  $len\t$conv{$letter}\n";
    }