in reply to Counting amino acids
If you don't want percentages, you can just modify the last $count line:
fromto this:$count{$a}= sprintf("%0.1f",($count{$a}/length($seq{$k}))*100);
$count{$a}= sprintf("%0.6f",($count{$a}/length($seq{$k})));
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Counting amino acids
by yuvraj_ghaly (Sexton) on Jul 19, 2013 at 07:14 UTC | |
by mtmcc (Hermit) on Jul 19, 2013 at 07:19 UTC | |
by yuvraj_ghaly (Sexton) on Jul 19, 2013 at 07:24 UTC |