Help for this page

Select Code to Download


  1. or download this
    sub reverse_complement {
        local $_ = shift;
        y/ACGT/TGCA/;
        reverse;
    }
    
  2. or download this
    while (<FASTA>) {
        chomp;
    ...
            # it's sequence data
        }
    }