Hi Dave,

So i have created a hash with the first to columns as an identifier. What i need to is compare the hash values which are in an array.

The code is given below

Best and Thanks
Deepak

open($f,$ARGV[0]); while(<$f>) { chomp; @l = split "_",$_; $h{$l[0]."\t".$l[1]} .= $l[2]."\t"; } foreach (sort keys %h) { @n = split "\t",$h{$_}; if(scalar @n == 1) { print "$_\t$h{$_}\n"; } else { @s = sort {$a <=> $b} @n; for($i=0; $i <= $#s; $i++) { if($i == 0) { push(@na,$s[$i]); } else { $len = $#na; if($s[$i]-$na[$length] <= 45) { next; } else { push(@na,$s[$i]); } } } foreach $k(@na) { $hn{$k} = $_; } } }

In reply to Re^2: Compare elements of a line in a file by oxydeepu
in thread Compare elements of a line in a file by oxydeepu

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.