Hi,
I just joined to the world of Perl.
I am using the Open Perl IDE. in the following script do you know how I can set the path so, the program understand from where is should open the file. When I ran it I got the following message in console. "Entering open perl debugger, connecting to port 1378...connecte d. >Program terminated."
Thanks
[CODE=perl]
#! /usr/bin/perl -w
$proteinfilenam e = 'NM_0219664frag ment.pep';.
open (PROTEINFILE, $proteinfilenam e);
$protein = <PROTEINFILE> ;
close PROTEINFILE;
print "Here is the protein:\n\n";
print $protein;
exit;[/CODE]
I just joined to the world of Perl.
I am using the Open Perl IDE. in the following script do you know how I can set the path so, the program understand from where is should open the file. When I ran it I got the following message in console. "Entering open perl debugger, connecting to port 1378...connecte d. >Program terminated."
Thanks
[CODE=perl]
#! /usr/bin/perl -w
$proteinfilenam e = 'NM_0219664frag ment.pep';.
open (PROTEINFILE, $proteinfilenam e);
$protein = <PROTEINFILE> ;
close PROTEINFILE;
print "Here is the protein:\n\n";
print $protein;
exit;[/CODE]
Comment