minwoosun commited on
Commit
33d5b7b
·
verified ·
1 Parent(s): b86d216

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -8
app.py CHANGED
@@ -68,14 +68,10 @@ def main(input_file_path, species):
68
  # Print the command for debugging
69
  print("Running command:", command)
70
 
71
- try:
72
- print("---> RUNNING UCE")
73
- result = subprocess.run(command, capture_output=True, text=True, check=True)
74
- print(result.stdout)
75
- print(result.stderr)
76
- except subprocess.CalledProcessError as e:
77
- print(f"Error executing command: {e}")
78
-
79
  print("---> FINSIH UCE")
80
 
81
  ##############
 
68
  # Print the command for debugging
69
  print("Running command:", command)
70
 
71
+ print("---> RUNNING UCE")
72
+ result = subprocess.run(command, capture_output=True, text=True, check=True)
73
+ print(result.stdout)
74
+ print(result.stderr)
 
 
 
 
75
  print("---> FINSIH UCE")
76
 
77
  ##############