One more way to parse the sequence. The initialization statement is only needed if zero-counts must be defined.
use strict;
use warnings;
use Readonly;
use Data::Dumper qw( Dumper );
Readonly::Scalar my $seq => "ATCGGCGCCTAT" ;
my %count;
@count{ qw(A1 A2 A3 T1 T2 T3 C1 C2 C3 G1 G2 G3 ) } = (0) x (3*4);
foreach my $i (0 .. length($seq)-1 ) {
my $pos = $i % 3 + 1;
my $base = substr $seq, $i, 1;
$count{$base.$pos}++;
}
$Data::Dumper::Sortkeys = 1;
print Dumper \%count;
Or if you really want individual scalar counts and do not mind global variables or symbolic references.
use strict;
use warnings;
my $seq = 'ATCGGCGCCTAT' ;
my %count;
our( $A1, $A2, $A3, $T1, $T2, $T3, $C1, $C2, $C3, $G1, $G2, $G3 )
= (0) x 12;
foreach my $i (0 .. length($seq)-1 ) {
my $pos = $i % 3 + 1;
my $base = substr $seq, $i, 1;
{no strict 'refs'; ${$base.$pos}++;}
}
print $A1, $A2, $A3, $T1, $T2, $T3, $C1, $C2, $C3, $G1, $G2, $G3;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|