| 1003 |
|
|
| 1004 |
# Set the command line |
# Set the command line |
| 1005 |
command_line = str(phaserEXE) |
command_line = str(phaserEXE) |
|
process_args = shlex.split(command_line) |
|
| 1006 |
|
|
| 1007 |
# Launch phaser |
# Launch phaser |
| 1008 |
|
if os.name=="nt": |
| 1009 |
|
process_args = shlex.split(command_line, posix=False) |
| 1010 |
|
p = subprocess.Popen(process_args, shell="True", stdin = subprocess.PIPE, |
| 1011 |
|
stdout = subprocess.PIPE) |
| 1012 |
|
else: |
| 1013 |
|
process_args = shlex.split(command_line) |
| 1014 |
p = subprocess.Popen(process_args, stdin = subprocess.PIPE, |
p = subprocess.Popen(process_args, stdin = subprocess.PIPE, |
| 1015 |
stdout = subprocess.PIPE) |
stdout = subprocess.PIPE) |
| 1016 |
|
|
| 1046 |
|
|
| 1047 |
# Set the command line |
# Set the command line |
| 1048 |
command_line = str(molrepEXE) |
command_line = str(molrepEXE) |
| 1049 |
process_args = shlex.split(command_line) |
|
| 1050 |
|
|
| 1051 |
# Launch molrep |
# Launch molrep |
| 1052 |
|
if os.name=="nt": |
| 1053 |
|
process_args = shlex.split(command_line, posix=False) |
| 1054 |
|
p = subprocess.Popen(process_args, shell="True", stdin = subprocess.PIPE, |
| 1055 |
|
stdout = subprocess.PIPE) |
| 1056 |
|
else: |
| 1057 |
|
process_args = shlex.split(command_line) |
| 1058 |
p = subprocess.Popen(process_args, stdin = subprocess.PIPE, |
p = subprocess.Popen(process_args, stdin = subprocess.PIPE, |
| 1059 |
stdout = subprocess.PIPE) |
stdout = subprocess.PIPE) |
| 1060 |
|
|