noor78 has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl use CGI; use warnings; print "Content-type: text/plain\n\n"; $output = system("blast/bin/blastall -i test.na -p blastn -d blast/db/ +vector > result_blast"); open FILE, "result_blast" or die $!; my $lineno = 1; while (<FILE>) { print ": $_"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: cgi problems
by marto (Cardinal) on Apr 09, 2009 at 10:01 UTC | |
|
Re: cgi problems
by Anonymous Monk on Apr 09, 2009 at 10:05 UTC | |
|
Re: cgi problems
by targetsmart (Curate) on Apr 09, 2009 at 10:09 UTC | |
|
Re: cgi problems
by wol (Hermit) on Apr 09, 2009 at 15:01 UTC | |
|
Re: cgi problems
by CountZero (Bishop) on Apr 09, 2009 at 15:12 UTC |