Hi, can anyone plz help me. I'm trying to run the 'pepwindow' program on the input from my html form, and my script doesn't work. The following '-goutfile' option in the system command is for the output filename and '-gdirectory' for the directory.
Thanks alot.
[CODE=perl]
#!/usr/bin/perl -w
use CGI;
use CGI::Carp qw(fatalsToBrow ser);
my $fasta=$cgi->param('SEQUENC E');
system("/usr/local/bin/pepwindow $fasta -graph png -goutfile output -gdirectory temp/");
.......
[/CODE]
Thanks alot.
[CODE=perl]
#!/usr/bin/perl -w
use CGI;
use CGI::Carp qw(fatalsToBrow ser);
my $fasta=$cgi->param('SEQUENC E');
system("/usr/local/bin/pepwindow $fasta -graph png -goutfile output -gdirectory temp/");
.......
[/CODE]
Comment