Help for this page

Select Code to Download


  1. or download this
    return map {tr/\0/\0/ / $len} $ref_seq ^ $test_seq;
    
  2. or download this
    my($score) = map {tr/\0// / $len} $ref_seq ^ $test_seq;
    return $score;
    
  3. or download this
    return +(map{tr/\0// / $len} $ref_seq ^ $test_seq)[0];