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

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Recently, while doing summer research in Bioinformatics (I'm an undergrad dual-majoring in Computer Science and Biology) I had cause to explore Perl's references. Up until now, I had never needed an especially complex data structure. Perl's basic data structures have always served my needs adequately, and to be honest, I found Perl's referencing and dereferencing a bit confusing. Even the structure posted below isn't exceedingly complex, but it did spark my curiosity. What was the most complex data structure you ever tried constructing, and why? Another thing I've noticed is that it's often fun to use complex structures, but possible (and even simpler) to use several simpler ones. Anyone else noticed this? How much time / effort have you expended creating a huge structure, only to realize that it makes much more sense to break it up?

use strict; my ($key, $value, %massive, $element, $x, $y); open(CONSERVE, ""); while(<CONSERVE>) { my @params; chomp($_); @params = split /\t/, $_; $massive{$params[0]}->[int($params[1] / 1000000)] = \@params; } close(CONSERVE); open(PARAM, ""); while (<PARAM>) { my @params; chomp($_); ($key, $value, undef, @params)= split /\t/, $_; push(@{$massive{$key}->[int($value / 1000000)]}, @params); } close (PARAM); open(TSC, ""); while (<TSC>) { chomp($_); ($key, $value, undef, $element)= split /\t/, $_; push(@{$massive{$key}->[int($value / 1000000)]}, $element); } close(TSC); open(NIH, ""); while (<NIH>) { chomp($_); ($key, $value, undef, $element)= split /\t/, $_; push(@{$massive{$key}->[int($value / 1000000)]}, $element); } close(NIH); open(FILEOUT, ""); foreach $x(values(%massive)) { foreach $y(@{$x}) { print FILEOUT join("\t", @{$y}) . "\n"; } } close(FILEOUT);

I have, of course, stripped system-specific information from this, but it was a script I wrote recently for combining multiple data sets into one coherent file. Though I probably won't be revising it, as its usefulness has passed, comments on the code -in addition to comments about the questions above- are welcome.

-Mike-

In reply to Complex Data Structures by random

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-25 19:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found