Yes, that is correct. Technically, I could have used pattern matching rather than a counter to go through @prettybase, but normally a counter works well for these type of programs. Unfortunately, not in this case.
Bioinformatics
Comment on Re: Re: Finding elements without a counter...
my @prettybase;
my $seen = 0;
while (<PRETTYBASE>)
{
chomp;
my @info = split /\t/;
unless ($info[1] == $patient_number)
{
# Use this to short-cut out of the file once we've found our p
+atient info.
last if $seen;
next;
}
$seen = 1;
push @prettybase, $_;
}
# At this point, everything in @prettybase corresponds to the patient
+specified.
# Modify your algorithms accordingly.
------
We are the carpenters and bricklayers of the Information Age.
The idea is a little like C++ templates, except not quite so brain-meltingly complicated. -- TheDamian, Exegesis 6
... strings and arrays will suffice. As they are easily available as native data types in any sane language, ... - blokhead, speaking on evolutionary algorithms
Please remember that I'm crufty and crochety. All opinions are purely mine and all code is untested, unless otherwise specified.