Help for this page

Select Code to Download


  1. or download this
       109876543210
        GNNTCGANNTT
          *     *
    
    return value 2 and 8
    
  2. or download this
       109876543210
        GAATCGNNNTT
                *
    
    return value 2
    
  3. or download this
       109876543210
        GANNCGNNNNN
           *      *
    
    return value 0 and 7
    
  4. or download this
    my $str = "GNNTCGANNTT";
    my @char_arr = split (//,$str);
    ...
    }