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

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 rdmurray
Youri Lammers youri_lammers...@hotmail.com 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']

Re: os.system issues

2009-02-05 Thread Grant Edwards
On 2009-02-05, Christian Heimes li...@cheimes.de 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

Re: os.system issues

2009-02-05 Thread Chris Rebert
On Thu, Feb 5, 2009 at 6:00 AM, Youri Lammers youri_lammers...@hotmail.com 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']