我在 apche2 服务器上运行一个本地爆炸程序......但它向我显示错误。 - - - - - - - - - - - 警告 - - - - - - - - - - -
味精:找不到爆破的路径
我的代码是..
#!/usr/bin/perl
print "Content-type: text/html\n\n";
use Bio::Perl;
use Bio::Tools::Run::StandAloneBlast;
@params = ('database' => 'btaudb','outfile' => 'bla.out',
'_READMETHOD' => 'Blast', 'prog'=> 'blastn');
$factory = Bio::Tools::Run::StandAloneBlast->new(@params);
$str = Bio::SeqIO->new(-file=>'test_query.fa' , '-format' => 'Fasta' );
$input = $str->next_seq();
$factory->blastall($input);
当我在终端中运行相同的代码时,它工作正常......并显示 mw 正确的结果......请帮助我......如何在 apche2 服务器中运行本地 balst 程序......