First, read davido's answer: Re: How can I count the number and kinds of letters at 1st, 2nd and 3rd positions of 3-letter words in a string?
Here, I put some code, as easy as possible (I hope) without complexe data structure:
#!perl
use strict;
use warnings;
my $seq = "ATCGGCGCCTAT" ;
my (%first,%second,%third);
#perlre
my @trilet = $seq =~ /.../g;
#perlsyn LOOP
foreach my $letter ('A','T','G','C') { #init
$first{ $letter }=0;
$second{ $letter }=0;
$third{ $letter }=0;
}
foreach my $tri (@trilet) {
#perlfunc : substr
$first{ substr $tri,0,1 }++;
$second{ substr $tri,1,1 }++;
$third{ substr $tri,2,1 }++;
}
foreach my $letter ('A','T','G','C') {
print "$letter=$first{$letter}; ";
}
print "\n";
foreach my $letter ('A','T','G','C') {
print "$letter=$second{$letter}; ";
}
print "\n";
foreach my $letter ('A','T','G','C') {
print "$letter=$third{$letter}; ";
}
print "\n";
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.
|
|