|
Posted by Rita on November 15, 2005, 7:43 am
Please log in for more thread options
Hi Members,
i am new in perl , so i want your's help. Please help me.
i am making a programm amd i want to open a file of different
directory. and i worte the code
$filename1=012945;
unless (open(FILE1,"C:/Ritu/FastaSeqs/$filename1.CONSENS") )
{
print "Cannot open file \"$filename1.CONSENS\"\n\n";
exit;
}
@sts_seq =<FILE1>;
but i got message that cannot open file.
am i doing something wrong.
|