As AnonymousMonk suggested, I used the second colum as the key.

#!/usr/bin/perl -w use Data::Dumper; my $data = '/Data/Table1.txt'; open INFILE, '<', $data or die "aa\n"; my %hash = map { chomp; split /\t/ } <INFILE>; print Dumper(\%hash); my $data2 = '/Data/Table2.txt'; open INFILE2, '<', $data2 or die "aa\n"; my %hash2; while(<INFILE2>) { chomp; my $line = $_; my $key = (split/\t/, $line)[0]; push @{ $hash2{$key} }, $line; } print Dumper(\%hash2);

This returns the following output

$VAR1 = { '218489_s_at' => 'NM_000031', '216064_s_at' => 'NM_000027', '218487_at' => 'NM_000031', '211110_s_at' => 'NM_000044', '204333_s_at' => 'NM_000027', '210632_s_at' => 'NM_000023', '203935_at' => 'NM_001111067', '211560_s_at' => 'NM_000032', '204332_s_at' => 'NM_000027', '215719_x_at' => 'NM_000043', '204780_s_at' => 'NM_000043', '202834_at' => 'NM_000029', '206121_at' => 'NM_000036', '204781_s_at' => 'NM_000043', '205412_at' => 'NM_000019', '216252_x_at' => 'NM_000043', '205216_s_at' => 'NM_000042', '211621_at' => 'NM_000044', '200710_at' => 'NM_000018', '202502_at' => 'NM_001127328' }; $VAR1 = { '211560_s_at' => [ '211560_s_at P P P + A P P P' ], '204332_s_at' => [ '204332_s_at P P A + P P P P' ], '216064_s_at' => [ '216064_s_at P M P + P P A A' ], '200005_at' => [ '200005_at P P A P + P P A' ], '211110_s_at' => [ '211110_s_at P A P + A P A P' ], '200003_s_at' => [ '200003_s_at P A P + P P A P' ] };

The first value elemant in the second hash includes the key.


In reply to Re^4: Load a file into hash with duplicate keys by sophix
in thread Load a file into hash with duplicate keys by sophix

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.