Help for this page

Select Code to Download


  1. or download this
    my @pat;
    foreach my $r (@seq) {
    ...
       }
       print Newfile;
    }
    
  2. or download this
    my $seq = join '|', @seq;
    my %seq;
    ...
       s/($seq)/$seq{$1}/go;
       print Newfile;
    }