http://qs321.pair.com?node_id=837977


in reply to Re: Capture external program return value
in thread Capture external program return value

Untested late night code ;-)
my @cmd = ('blastall -i foo -o bar -p blastx -d baz');

On Sunday morning ;^), this would look better if spelled like this:

my @cmd = qw{blastall -i foo -o bar -p blastx -d baz};

 

Edit: removed unneeded parens.

--
 David Serrano
 (Please treat my english text just like Perl code, i.e. feel free to notify me of any syntax, grammar, style and/or spelling errors. Thank you!).