thegirlm0nkey has asked for the wisdom of the Perl Monks concerning the following question:
So in this example - the first number on each line is the co-ordinate, and the second is the score. I need all the regions scoring less than 50, so for the small example above, I would get something like:1 50 2 50 3 1 4 10 5 49 6 8 7 50 8 5 9 5 10 40
Hope that makes sense - I'm basically looking for the first and last positions where the score is less than 50. So far I have slurped the file into an array like this:3 6 8 10
But I'm stuck with the 'something here' - I need to keep track of the first time a score of less than 50 is seen, and the last time it is seen before it goes above 50, and capture the two corresponding $columns[0] numbers. Really hope I've explained this properly! TIA.foreach my $line (@lines) { chomp $line; my @columns = split(/\t/, $line); my $score = $columns[1]; if ($score < 50) { #something here... } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Iterating through file to find specific subsets of lines
by toolic (Bishop) on Dec 04, 2013 at 15:19 UTC | |
by thegirlm0nkey (Initiate) on Dec 04, 2013 at 15:35 UTC | |
|
Re: Iterating through file to find specific subsets of lines
by jethro (Monsignor) on Dec 04, 2013 at 15:23 UTC | |
by toolic (Bishop) on Dec 04, 2013 at 15:37 UTC | |
|
Re: Iterating through file to find specific subsets of lines
by choroba (Cardinal) on Dec 04, 2013 at 15:20 UTC |