Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    ...
    print "Matches: $match\nMismatches: $mismatch\nPercent match: ",
          sprintf("%.01f", ($match / $s1len) * 100),
          "\n";
    
  2. or download this
    Matches: 12
    Mismatches: 1
    Percent match: 92.3