On Monday, Nov 10, 2003, at 13:54 US/Pacific, Ganesh Shankar wrote: [..]

since you chdir INTO the $folder
you need to merely fix the foreach loop:

foreach my $seqfilename (@files){
        
        $seqfilename = '';
comment out the
        #$seqfilename ='';
otherwise the next line:

open (TXTFILE,"<$seqfilename") or die $!; #dies on this line.Replace with

will be interpreted as


open (TXTFILE,"<")

and that should DIE! since it is trying to open as input
a non-existent file!

[..]
ciao
drieux

---


-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to