Help for this page

Select Code to Download


  1. or download this
    my $fseq1= 'CCCCGCGC';
    my @nsub1= ('CCCCG', 
    ...
                [ 1, 'CC---' ],   # but this is extra
                [ 2, '---GC' ]
              ];
    
  2. or download this
    my $fseq2=   'CCGCGCTC';
    my @nsub2= ( 'CCGCG',
    ...
               ];
    
  3. or download this
    # So here we can observe that every element of the 
    # array is only produced 'once'
    ...
                [ 2,'----T' ],
                [ 3,'----C' ],
               ];