Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: extracting only those keys with uniq values in array list

by Cristoforo (Curate)
on Apr 20, 2021 at 01:45 UTC ( [id://11131492]=note: print w/replies, xml ) Need Help??


in reply to extracting only those keys with uniq values in array list

I don't know if you have to have a hash of lists, but this could be solved using a hash of hashes. I couldn't find a .tsv file to try this out (but did try it on a .csv and it seemed to work).
while(<>){ chomp; my @s = split /\t/; my $r_name = $s[0]; my $seq = substr $s[9], 0, 12; $read2seq{$r_name}{$seq}++; } my @keys_with_2_unique_vals = grep 2 == keys %{$read2seq{$_}}, keys %read2seq;
UPDATE: To account for the change in OP's post. (He wants keys where both values are the same) Change the grep line to:

my @keys_with_equal_pair_of_vals = grep 1 == keys %{$read2seq{$_}}, keys %read2seq;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11131492]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (2)
As of 2024-04-20 12:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found