Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Weighted frequency of characters in an array of strings

by Anonymous Monk
on Jun 07, 2016 at 23:26 UTC ( [id://1165120]=note: print w/replies, xml ) Need Help??


in reply to Weighted frequency of characters in an array of strings

You could compress the sequences (substrings) into vectors like so:

my $bitvec = pack "H*", ($string =~ tr/AGCT/1248/r);
The AGCT values will be interleaved in the resulting bitvector. Better yet, transform the full sequence.

Convert the bitvectors into integer vectors and sum them up. Better yet and if memory allows, create one big vector from the full sequence (with 4*length elements), as the first step.

Then, using an appropriate module with overloading, you might simply (completely untested code):

my @arrr = split //, unpack "B*", $bitvec; my $histogram = Math::GSL::Vector->new(); my $sequence = Math::GSL::Vector->new( \@arrr ); while (($pos,$freq) = each %points) { my $view = gsl_vector_subvector( $sequence, 4 * $pos, 4 * $slen ); $histogram += $view * $freq; $sum_freq += $freq; } # normalize and uninterleave $histogram *= 1 / $sum_freq; @parts = part { $i++ % 4 } $histogram->as_list;
But then, there probably exist specific modules for histogramming...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1165120]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-18 22:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found