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

os.system issues

2009-02-05 Thread rdmurray
Youri Lammers writes: > I want to run a program called 'muscle' with my python script=2C > 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') > > H

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

os.system issues

2009-02-05 Thread Youri Lammers
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 happ