Ok,
 
I want to run a program called 'muscle' with my python script,
muscle uses the following command:
'muscle.exe -in filename -out filename'
so far I got:
 
import os
args = ['-in filename', '-out filename']
os.system('E:\Programs\muscle\muscle.exe args')
 
However, when I run this nothing happends, no error message, nothing.
 
So what am I doing wrong here?
 
Youri
_________________________________________________________________
De leukste online filmpjes vind je op MSN Video!
http://video.msn.com/video.aspx?mkt=nl-nl
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to