Help for this page

Select Code to Download


  1. or download this
    my @sorted =
        sort {
    ...
           $count_a <=> $count_b
        }
        @sequences;
    
  2. or download this
    my @sorted =
        map substr($_, 4),
        sort
        map pack('N', tr/GC//) . $_,
        @sequences;