Help for this page

Select Code to Download


  1. or download this
    <code>
    if($seqR =~m/\G([A-Z]{3,7})+?$_/g) {
        #print "All repeated sequences $_\n";
    };
    </code>
    
  2. or download this
    while($seqR =~m/([ATGC])\g1{2,6})+/g) {
        my $position = pos;
        print "$& found at $position\n"
    };