On Apr 27, 2009, at 18:55 , Vasili I. Galchin wrote:
               ["-p blastn"]  -- CLI args

createProcess expects a list of individual argument strings. You're sending it a single argument ["-p blastn"]; you want to send it two arguments ["-p", "blastn"] (or ["-pblastn"] without the space; like most commands you can combine the parameter with the option or pass it as the next argument).

The command line equivalent of what you're doing would be: blastall '- p blastn'

--
brandon s. allbery [solaris,freebsd,perl,pugs,haskell] allb...@kf8nh.com
system administrator [openafs,heimdal,too many hats] allb...@ece.cmu.edu
electrical and computer engineering, carnegie mellon university    KF8NH


Attachment: PGP.sig
Description: This is a digitally signed message part

_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to