Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Consolidating biological data into occurance of each biological unit per sample in table

by 2teez (Vicar)
on Jan 13, 2013 at 04:00 UTC ( [id://1013082]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    occurence28    C    a__bear;c__brown
    occurence29    B    a__wolf;c__red
    occurence30    B    a__wolf;c__grey
    
  2. or download this
    {
      bear  => { A => 6, B => 2, C => 6 },
    ...
      white => { wolf => { A => 1, C => 1 } },
      wolf  => { A => 4, B => 7, C => 5 },
    }
    
  3. or download this
    $analyse{$animal_color}{$animal_name}{$animal_type}++
              if defined $animal_color;
    
  4. or download this
    $analyse{$animal_color}{$animal_type}++
              if defined $animal_color;
    
  5. or download this
    {
      bear  => { A => 6, B => 2, C => 6 },
    ...
      white => { A => 1, C => 1 },
      wolf  => { A => 4, B => 7, C => 5 },
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1013082]
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: (4)
As of 2024-04-19 16:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found