On May 14, 2007, at 3:44 PM, Tatiana Lloret Iglesias wrote:
Hi all,

I have to execute this command from perl:

my $status = system("d:\\blast\\bin\\blastall -p blastn -i $file -d $patDB
-o $workdir\\blast_$blast_file_id.txt");


but the problem is that $workdir contains spaces .... how can I make it
work?

Break that into a list of arguments:

  system("d:\\blast\\bin\\blastall", "-p", "blastn", "-i", $file, ...);

-- fxn






--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to