Help for this page

Select Code to Download


  1. or download this
    my $raw=<IN>;
    $rev= reverse $raw;
    $rev=~tr/ATGCatgc/TACGtacg/;
    
  2. or download this
    while(@inf=<IN>)
    {
    ...
    $inf[i]=reverse $inf[i];
    }
    }