Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: how extract values of hash via key

by kcott (Archbishop)
on Nov 22, 2013 at 23:42 UTC ( [id://1063997]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my %reverse;
    push @{$reverse{$CodonMap{$_}}}, $_ for keys %CodonMap;
    
  2. or download this
    #!/usr/bin/env perl -l
    
    ...
    push @{$reverse{$CodonMap{$_}}}, $_ for keys %CodonMap;
    print "A codons: @{$reverse{A}}";
    print "B codons: @{$reverse{B}}";
    
  3. or download this
    A codons: GCA GCU GCG GCC
    B codons: UVW XYZ
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (5)
As of 2024-04-18 04:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found