Help for this page

Select Code to Download


  1. or download this
    ++$count{$1},pos($genome)-- while $genome =~ /\G(..)/g
    
  2. or download this
    $genome =~ /./g;
    $count{$1}++ while $genome =~ /(.\G.)/g
    
  3. or download this
    $count{$1}++ while $genome =~ /\G(?=(..))./g