gabboud commited on
Commit
d40ca0d
·
1 Parent(s): db73d77

refunnel rfd3 cli output to stdout

Browse files
Files changed (1) hide show
  1. 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, capture_output=True, text=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