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