Help for this page

Select Code to Download


  1. or download this
           if ($targetseq=~ /.*$probe.*/) {
              $start = index($targetseq, $probe);
              push(@matchregion,$start);
           }
    
  2. or download this
           $start = index($targetseq, $probe);
           push(@matchregion, $start) unless $start == -1;