Hi all, I am new to hash references so I am not too familiar with all of the related basics.

I have made a hash or arrays HoCl. For each Cluster_num there is a list of members. I want to find for each pair of members how many of the same clusters they belong to $overlap. The script is working as expected (before I added the line about 0). But i want the overlap value to be 0 as a default. How do I set the default value for overlap? Thank you

my $overlap = {}; foreach $Cluster_Num (keys %HoCl){ my @members=@{$HoCl{$Cluster_Num}}; my $count = scalar(@members); for (my $i=0;$i<$count;$i++){ for (my $j=$i+1;$j<$count;$j++) { $overlap -> {$members[$i]} -> {$members[$j]} = 0; $overlap -> {$members[$i]} -> {$members[$j]} ++; $overlap -> {$members[$j]} -> {$members[$i]} ++; } } }

In reply to how to set a value for a hash reference by AWallBuilder

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.