thanks a lot, I've been using hash-hash-array-array in order to keep memory use down. I think array access is also faster than hash, so I did this:
foreach my $rat (@directories) {
print "Reading Merged_99$rat/bs_seeker-CG.tab ...\n";
open(FH,"<Merged_99$rat/bs_seeker-CG.tab") or die "cannot read M
+erged_99$rat/bs_seeker-CG.tab: $!";
while (<FH>) {
if (/M/) {
next;
} elsif ((/^chr(\S+)\s+(\d+)\s+\d+\s+(\d)\.(\d+)\s+(\d+)/) &&
+ ($1 ~~ @CHROMOSOMES) && ($5 >= $MINIMUM_COVERAGE)) {
#chromosome $1, methylated C $2, percent $3.$4 and coverage $5
$DATA{$1}{$2}[$set][$replicate] = "$3.$4";
} elsif ((/^chr(\S+)\s+(\d+)\s+\d+\s+(\d)\s+(\d+)/) && ($1 ~~
+ @CHROMOSOMES) && ($4 >= $MINIMUM_COVERAGE)) {
$DATA{$1}{$2}[$set][$replicate] = $3;
}
}
close FH;
$replicate++;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.