Spaces:
Running on Zero
Running on Zero
refunnel rfd3 cli output to stdout
Browse files- utils/pipelines.py +1 -1
utils/pipelines.py
CHANGED
|
@@ -142,7 +142,7 @@ def generation_with_input_config(input_file, pdb_file, num_batches, num_designs_
|
|
| 142 |
command += f" {extra_args}"
|
| 143 |
print(f"Running command: {command}")
|
| 144 |
start = perf_counter()
|
| 145 |
-
subprocess.run(command, shell=True, check=True,
|
| 146 |
print("Command took", perf_counter() - start, "seconds to run.")
|
| 147 |
|
| 148 |
|
|
|
|
| 142 |
command += f" {extra_args}"
|
| 143 |
print(f"Running command: {command}")
|
| 144 |
start = perf_counter()
|
| 145 |
+
subprocess.run(command, shell=True, check=True, text=True)
|
| 146 |
print("Command took", perf_counter() - start, "seconds to run.")
|
| 147 |
|
| 148 |
|