Help for this page

Select Code to Download


  1. or download this
    my @megaMotif = (
                      ["AGCT", "0", "370",  "1"],
    ...
                      ["TGAA", "2", "233",  "0"],
                      ["AGAG", "0", "32",   "0"]
                    );
    
  2. or download this
    for $mega( sort{ $a->[1] <=> $b->[1] } @megaMotif )
    {
            print @$mega;        
            push (@megaMot, [@$mega]);
    }