Help for this page

Select Code to Download


  1. or download this
        my $line1= "CACTATGAGTGATCGC";
        my $line2= "ACTGACTAATGCGTTG";
        my $diff= $line1 ^ $line2;     # Do a bit-wise xor
        $diff =~ tr/\0-\xff/ */;       # Change zero bytes to " ", others 
    +to "*"
        print "$line1\n$diff\n$line2\n";
    
  2. or download this
        CACTATGAGTGATCGCG
        *   ************
        GACTGACTAATGCGTTG