Help for this page

Select Code to Download


  1. or download this
    /ACCAAC[ACGTacgtNn]{6}CTA[ACGTacgtNn]{1}ATG[ACGTacgtNn]{1,2}GATGTT/
    
  2. or download this
    $buf =~ m/(A)(C)(C)(A)(A)(C)([ACGTacgtNn]{6})(CTA[ACGTacgtNn]{1})(A)(T
    +)(G)([ACGTacgtNn]{1,2})(G)(A)(T)(G)(T)(T)(?{
        print $-[0]," ",scalar@-,"\n";
        })(?!)/;