Help for this page

Select Code to Download


  1. or download this
    while(<FILE>){
        $_=~s/\s+//g;
    ...
    }
    my %s = ();
    $s{$_}++ for @array1;
    
  2. or download this
    N01A0000.fBG1_c22
    N01A000X.fBG1_c5
    N01A000X.rBG1_c5
    ...
    
  3. or download this
    my %s;
    while(<FILE>) {
        s/\s+//g;
        $s{$_}++;
    }