in reply to
overlapping regions
Strange things:
You define a
sub overlap { ... }
inside a
while ()
loop.
You don't call this sub (overlap).
You use
@file1 = <MYFILE>
then
while(defined(my $line1 = <$file1>
.
Add
use strict; use warnings;
in the begining of your script will help.
Comment on
Re: overlapping regions
Select
or
Download
Code
Replies are listed 'Best First'.
Re^2: overlapping regions
by
perllearner007
(Acolyte)
on Apr 24, 2012 at 16:00 UTC
Thanks brx...I've been revising the code a bit..Will be posting any update soon.
[reply]
In Section
Seekers of Perl Wisdom