Please try to provide good sample code for people new to Perl. $a and $b are special variables and are poor choices for variable names in any case. Always use strictures (use strict; use warnings;). Use the three parameter version of open and use lexical file handles. Declare variables in the smallest scope that makes sense. Try to write a self contained example that can be run. Consider:

use strict; use warnings; my $fileName = 'data.txt'; # Create the sample data file open my $outFile, '>', $fileName or die "Failed to create $fileName: $ +!"; print $outFile <<SAMPLEDATA; Db10g029860.2 7 Db10g029860.2 1 Db10g029860.2 2 Db10g029860.2 1 Db10g029860.2 4 Db10g029860.2 2 Db10g029860.2 6 Db10g029860.2 11 Db96g938791.0 5 Db96g938791.0 9 Db96g938791.0 1 Db96g938791.0 3 Db96g938791.0 7 Db04g787390.1 6 Db04g787390.1 5 Db04g787390.1 5 Db04g787390.1 12 SAMPLEDATA close $outFile; # Process the input file open my $fileIn, '<', $fileName or die "Unable to open $fileName: $!"; my %counts; while(<$fileIn>) { chomp; my ($id, $count) = split /\s+/; next if ! $count; $counts{$id} += $count; } # Print the result for my $id (sort keys %counts) { printf "%-12s: %5d\n", $id, $counts{$id}; }

Prints:

Db04g787390.1: 28 Db10g029860.2: 34 Db96g938791.0: 25

True laziness is hard work

In reply to Re^3: Count ID values by GrandFather
in thread Count ID values by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • 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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.