in reply to manipulating hashes
foreach $prot_string (@truncated_sequences) { foreach $tri_seq (@triamino_combo) { $tri_freq{$tri_seq} = 0; while ($prot_string =~ /$tri_seq/g) { $tri_freq{$tri_seq}++; } } }
-- Mike
--
just,my${.02}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: manipulating hashes
by insensate (Hermit) on Nov 19, 2002 at 19:23 UTC |