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

More efficient way to lookup with 2 AoA's.

by BioGeek (Hermit)
on Jul 27, 2004 at 20:39 UTC ( [id://377857]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    @gene_score = (
             [ "gene_name_0", "score_0" ],
    ...
                ...
             [ "gene_name_400", "score_400" ]
    );
    
  2. or download this
    @gene_start_stop_chr = (
             [ "gene_name_0", "start_0", "stop_0", "chr_0" ],
    ...
                ...
              [ "gene_name_30000", "start_30000", "stop_30000", "chr_30000
    +" ]
    );
    
  3. or download this
    @results = (
             [ "gene_name_0", "score_0", "start_0", "stop_0", "chr_0" ],
    ...
                ...
             [ "gene_name_400", "score_400", "start_400", "stop_400", "chr
    +_400" ],
    );
    
  4. or download this
    for (my $a = 0; $a < scalar @gene_score; $a++) {
            for (my $b = 0; $b < scalar @gssc; $b++) {
    ...
            }
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://377857]
Approved by BrowserUk
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-18 02:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found