Re: os.system issues

2009-02-05 Thread Chris Rebert
On Thu, Feb 5, 2009 at 6:00 AM, Youri Lammers wrote: > 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'] As Christian indire

Re: os.system issues

2009-02-05 Thread Grant Edwards
On 2009-02-05, Christian Heimes wrote: > Youri Lammers schrieb: >> 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 filenam

Re: os.system issues

2009-02-05 Thread Christian Heimes
Youri Lammers schrieb: > 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